| bio | website | google.com |
|---|---|---|
| location | Parsons, WV | |
| age | 25 | |
| visits | member for | 2 years, 9 months |
| seen | Apr 4 at 9:00 | |
| stats | profile views | 40 |
Hmm not alot really.
|
Sep 13 |
comment |
Display a portion/ branch of the menu tree using wp_nav_menu() sorry, I'm not sure what you mean. Could you clarify please. |
|
Sep 11 |
comment |
Display a portion/ branch of the menu tree using wp_nav_menu() Hmm, I actually have a strange problem. I have a page called "Children's". And it seems that the apostrophe in the word fails to find the page. Any ideas? |
|
Sep 11 |
comment |
Display a portion/ branch of the menu tree using wp_nav_menu() Such a fantastic answer. Thank you so much. This should really be a default option within WordPress. |
|
Sep 16 |
comment |
category.php not showing custom post types Yep, public is set to true. According to print_r($wp_query), it tells me that it's only querying the posts table. I solved this by putting this at the top of my loop $cats = new WP_Query(array('post_type'=>'any','category_name'=>single_cat_title('', false))); |
|
Sep 15 |
comment |
Limit 'contributers' abilities in WordPress Not going to help? Just click 'close'? |
|
Mar 31 |
comment |
Allow front end users to add data to a custom post type Perfect, thanks! |
|
Mar 30 |
comment |
What exactly does “Posts page” do in WordPress? So home.php is the blog page, and index.php is the home page. Is this documented anywhere? |
|
Mar 10 |
comment |
Identify that a page is a grandchild page Why thank you! I had to Booleanate the function (renamed to is_grandchild) and changed line 7 to "return true". |
|
Feb 24 |
comment |
Wordpress 3.1 not autoupdating turns out php's "safe mode" was an issue, having it on didn't allow the .zip file to decompress. |
|
Feb 11 |
comment |
Permalinks not working using wordPress Networking with custom post types paralinks sounds cooler though :( |
|
Feb 11 |
comment |
Permalinks not working using wordPress Networking with custom post types Hmm, odd. Updating the paralinks seems to have fixed the issue. |
|
Feb 11 |
comment |
Multiple Wordpress Blogs on one host, using 1 WordPress installation, using multiple templates Does WordPress Network allow me to have each site skinned by a different template? |
|
Oct 6 |
comment |
display different template based on post type Works a charm, I'm only getting used to how WordPress works, i honestly didn't know it was this flexible! |
|
Oct 6 |
comment |
Show the First Post from Each of 3 Different Post Types on a Web Page? get_posts() worked a treat in conjunction with setup_postdata() |
|
Oct 6 |
comment |
Show the First Post from Each of 3 Different Post Types on a Web Page? So should i use get_posts() or WP_Query()? What way would you recommend? |
|
Sep 9 |
comment |
display featured image in RSS feed ... nope reply. any ideas? |
|
Sep 7 |
comment |
display featured image in RSS feed Oh, a follow up. I'm using php's SimpleXmlElement() and reading the file through that. Will that make a difference? |
|
Sep 7 |
comment |
display featured image in RSS feed I've added this to my templates functions.php file, but when i read the feed i cannot see it. Do i need to do anything else to it? |
|
Sep 7 |
comment |
No option to add a 'featured image' in my wordpress installation turned out the wordpress version was a little older than i thought! Its all working now. Thanks for the suggestions. |
|
Sep 6 |
comment |
Calling a Function After New Post Creation for a WordPress Custom Post Type? So i assign my function to the publish_product action? |