wordpress

Get Wordpress to Coincide with Zend Framework at the base level

Hi all, I have a current wordpress blog with the blog posts URLs structured as http://somedomain.com/2010/02/postname I'm now installing a zend framework implementation at the base level http://somedomain.com/ I DON'T want my blog to have a different url structure. like http://somedomain.com/blog/2010/02/article-name Any ideas on ...

Sidebar Behaves Differently on Wordpress Archive Pages

I am stuck on this one... I have modified the default theme to a design my client came up with. All my modifications seem to be working okay, except the pages selected from the archive dropdown menu. Here's a link to an example page where the problem exists: http://mtrainierphotos.com/blog/?cat=15 Everywhere else the sidebar looks as i...

wordpress date formatting

Is there any way to individually style each part of the date that wordpress puts in its post loop? In other words, when I use the php code: <?php the_time('M j, Y') ?> it comes out as "Feb 12, 2010". Is there a way I can style each word of the date differently? Like have the font-size for the word "Feb" be small and the font-size for...

Display same-day events together (PHP/MYSQL)

$sidebarEvent = '<h4 class="scheduler_sidebar_link"><a href="{*URL*}#date={*DATE_SQL*},mode=month" target="_blank">{*DATE*}</a></h4> <div class="scheduler_sidebar_text">{*TEXT*}</div>'; This is a snippet from a plugin that I'm using. It prints event date followed by description. How do I modify it so that all same-day ...

Testing 'pluggable' function calls clashes for WordPress and unit testing

WordPress has a group of functions call pluggable functions; basically, they are designed to be overrided for new functionality, but there is a catch - if another plugin define that function first, some other plugin of a lower priority cannot...(or else there will be a fatal error). Hence it is common to have 'include guards' like this ...

I am using Cufon hack Cufon.now() on wordpress not working

I am trying to use Cufon on my wordpress, to stop the delayed appearance, I am trying to use the Cufon.now() hack withing my page but its not working, i am using FireFox 3.5.7 for testing purpose, Can someone point me out where I am going wroong. ...

Get all custom fields that belong to a certain box in Wordpress

How can I get all custom fields that belong to a certain box only. For example, I am using the "more fields" plugin which allows me to create boxes of custom fields for instance a box called "hotel features" with different custom fields as the particular features. Teh point is that when I extract meta data in the template, there is no...

jQuery conflict

Hi, I have a wordpress plugin lightbox2 and a news scroller on my page. My head section looks like this <script type="text/javascript" src="wp-content/themes/soundsright/menu.js"></script> <script type='text/javascript' src='wp-includes/js/prototype.js?ver=1.6'></script> <script type='text/javascript' src='wp-includes/js/scriptaculous...

Create a Wordpress post with xmlrpc and jQuery

Hi, I have a dynamic page where the user can fill some fields. Those users will all have an account on a WordPress blog. I would like to allow them to directly post the content generated by the webpage to the blog. I don't want to store their password in the server so I want to do this client-side with JQuery. I have looked both at the...

Is there an easier way to add menu items to a wordpress navigation menu?

I'm new to Wordpress or CMS's for that matter but I'm used to the way Joomla's menus work. I have downloaded this Wordpress theme that had a navigation menu with 4 pages. So I thought I'd create a new page and select the main page as the parent. But after I go to the site the navigation doesn't show the link to the page. So I took a lo...

Wordpress Hook Pre Post Update

Hi, I am writing a wordpress plugin. I would like to to set the post status to publish if post status is future. I know one hook that is to be used that is pre_post_update. However where is the array of post related details stored so that I can change the post_status? Thanks for the help ...

Where is the template file for the password protected page in wordpress?

Hi guys, I'm trying to edit the template page which is used when a page or post is password protected. I can't seem to have much luck locating it. do you know where it is? ...

SQL exclude first ID entry

I need to exclude first id entry, and display the rest on my wordpress, I have never used sql before. $all_users_id = $wpdb->get_col( $wpdb->prepare("SELECT $wpdb->users.ID FROM $wpdb->users ORDER BY %s ASC", $sort )); ...

Scholarships for open-source code?

So I'm attending college in the fall, thus my dad won't be quiet about the scholarship thing. I've wrote two wordpress plugin and a jQuery plugin, so I was wondering if there are any legit scholarships I could enter because of these? Thanks for any advice =D ...

Why is there space at the right of my website? (Wordpress)

Hi. I have a wordpress site. I don't know how this happened, but now it obviously has got a lot of spae to the right! Can some of you see through the souce and see if you find anything suspicious? It would be really appreciated! Thanks :) Site: gone! :) ...

Wordpress get_post_meta

I want to retrieve url to last post image with get_post_meta method, but I don't know how, and what paramaters are needed. ...

Weird text artifacts on clients wordpress website

http://ecc.galengrover.com/programs/facility-rentals/ On that page, and only that page im having a weird issue. Above the content box the words "all areas" appears on top of the other text. The string "All areas" doesn't even exist on the page (it did until i removed it for testing purpose). to make this even weirder this only happens i...

Wordpress the_author_posts_link

I have a loop where I post list of authors w/ SQL Query, I also need to post the_author_posts_link with links to author pages. When I put it into loop it renders only 4th entry for every iteration. foreach ($all_users_id as $i_users_id ) : $user = get_userdata( $i_users_id ); the_author_posts_link(); $email = $user->user_email; echo...

Category as a Horizontal menu in wordpress

Hai, I have some parent catogories and sub categories in wordpress. I would like to have parent catogory as a main horizontal menu and sub menu as a sub category of that specific parent catogory. Both main menu and submenu should be in the horizontal structure. So on mouse over of the main menu will show the submenu. could u guys help m...

read more link in post is not working wordpress

Hi, How to bring the read more link at the end of the post in the home page of my blog? Basically in my home page, it display all the content of the post, i would like to limit the characters to display thanks ...