wordpress

Add tweet button on wordpress blog

Hi, I have been trying to put twitter's new tweet button on my wordpress blog. I have tried code provided on official twitter website, and couple of wordpress plugins to add tweet button on the blog. But on every try I am running into same issue. When I click on tweet button it goes to the twitter website but says url' parameter does n...

Which IDE is good for wordpress?

Hi Any one provide me best IDE for wordpress theme and plugin editing in windows. As I m new to this area, Please provide me suggestion. Any I am using it in my notebook with 2GB RAM. ...

Replace blog from wordpress to own hosting

Hello to all, I'd like to replace my 2 years old blog currently hosted free on wordpress to my own hosting I wrote with this question to wordpress support and got this link as an answer en.support.wordpress.com/moving-a-blog/#moving-to-wordpress-org I understood that I need to download WordPress.org software and I did it. I tried to i...

how to use accordian menu in wordpress

hi to all i am using wordpress for my site i wanna add accordian menu as a middle content of the index page how it possible plz help. thanks in advance ...

Although magic_quotes are turned off still escaped strings?

I disabled magic_quotes in my php.ini. But I still get escaped strings in my form. Note: I'm running this in a theme in Wordpress. ...

Read more no longer displaying

After upgrading WordPress, TinyMCE Excerpt stopped working, and so did the excerpt code within thehypebr.com/index.php. I'm not sure why Read More doesn't display after each excerpt. <div class="custom_excerpt"><?php the_excerpt('Read more &raquo;'); ?></div><div class="separator">&nbsp;</div> ...

WordPress vs Drupal

I am going to be developing a site for a client and am torn between using WordPress or Drupal. I have moderate experience with WordPress, a little less with Drupal. The site will feature regular postings from the site administrators, but also needs to allow easy postings from authorized members. Members can join via the site or via Face...

Wordpress Comment Issue

go to: and then click on any of the "view article" buttons on the recent comments section. You will see that it cuts off the top half of the page. I can't seem to figure out why. If anyone could help me it would be greatly appreciated! ...

pyrocms installation in a subdirectory with wordpress installed in the root directory

Been at this for a while, so I figured I'd ask for help. Here's the .htaccess file for wordpress in the root: AddHandler x-httpd-php5 .php AddHandler x-httpd-php .php4 # BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteCond $1 !^(community)(/|$) RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_...

wordpress navigation help

Hi There, I currently have a nav menu that is built with the following, <?php if(!is_user_logged_in()) { wp_page_menu('show_home=1&exclude=214&exclude_tree=80'); } else { wp_page_menu('show_home=1&exclude=214'); } ?> My problem is that I have some buddpres...

In wordpress 3.0 how do you get the default Custom Field UI for Custom Post types?

How do you get the default custom field UI for custom post types? ...

Sql-request to sort blogs by order in wordpress mu?

I'm using the following code to generate a list of all wordpress blogs in my wordpress mu network: $blogs = $wpdb->get_results("SELECT * FROM " . $wpdb->blogs . " WHERE last_updated!='0000-00-00 00:00:00' AND public='1' AND spam = '0' AND deleted ='0' ORDER BY registered " . $order . " LIMIT " . $limit); How do i do to order them ...

wordpres editor (tiny mce) and inline header tags

hi, I am using wordpress for a site, I want to created a couple of sizes of text on the same line with h1 and h2 tags. The problem is when I try and create the h2 on the same line it changes the whole line to h2. Now if I was doing this I could just switch to source and edit but the person editing may not have the technical ability to ...

Magento and Wordpress not sharing session data (like number of items in cart)

Using the code below in the index.php file of a WP template: require_once '/Users/xxx/Documents/Projects/honora/trunk/app/Mage.php'; umask(0); Mage::app('default'); Mage::getSingleton('core/session', array('name' => 'frontend')); Mage::log(Mage::helper('checkout/cart')->getCart()->getItemsCount()); should in theory give me the number ...

How can i display the posts per week in a particular month?

I have to display the posts as the following September 2010 Friday September 24, 2010 post1 post2 . . . Friday September 17, 2010 post1 post2 . . . Friday September 10, 2010 post1 post2 . . . Friday September 03, 2010 post1 post2 . . . can any one tell, how can do this?, or which function should i use? I have used the foll...

How can I simultaneously query all blog options table in a Wordpress multisite installation (3.0)?

In our Wordpress 3.0 multi-site installation, we have a custom option for all of our blogs called something like 'platform'. Admins can enter in a value for this platform when creating or editing a blog. Some blogs may have no platform. We need to be able to create a list of all platforms, and their associated blogs. The problem is, we ...

Query only posts that have date of next 30 days within custom field value, not publish date.

I have a custom post type and a few custom fields, one is called "Time Available" which shows a date picker and allows the user to pick a date to fill in when a property will be available. I then have it display it in 'mm/dd/yyyy' format. I'm then trying to display the posts that will be available within a month in a query. Here's the c...

wordpress enqueue script issues ("$ is not defined")

Hopefully this one is a pretty easy fix for you guys :) I am building a wordpress theme, and had previously been fairly poorly calling the jquery script in the html head tag. This was causing some loading lag in Opera though, which I suspect is because I was trying to load jquery simultaneously in two ways... anyway I'm now doing it pro...

Limit the max number of post show in the index page in wordpress

Hello, you know that by default wordpress shows 10 post in the index page, i need to show 20, where can i modify this? Thanks! ...

Override database config for wordpress multiblog

Our team has run in to a problem working with wordpress 3 multiblog. We usually work with a local copy of the site (localhost/testsite) but with the same database to keep all changes up to date. This works fine in a single install because you can override the database configs from php with: define('URL',$path); define('WP_HOME',$path);...