Related Content
Logging Errors In WordPress
To debug WordPress many sites will tell you to add the WP_DEBUG setting on its own to your wp-config.php file, but this can be quite harmful as many server configurations will start showing PHP errors and warning messages on your site pages.
The Correct Way To Load A Template File In WordPress
Since WordPress 3.0 there has been a funcion called get_template_part(), which has been used quite a bit in the new Twenty Ten default WordPress theme. This is an evolution of the usual way to include parts of themes by using functions like get_header() to include the header.php file.
Extending The WordPress Page Walker
I have looked at printing an intelligent list of WordPress pages in a previous blog post, but I wanted to revisit this topic and use the Walker classes that are part of WordPress.
Some Essential WordPress Plugins
I know what you are thinking, but this isn't just another WordPress plugin blog post. I am asked every few weeks what WordPress plugins I would recommend, and I always end up giving a disjointed list of some from the top of my head.
WordCampUK 2010: A Review
WordCampUK is an informal 2 day conference and barcamp that centers around using, working with and developing in WordPress. This year's WordCampUK was held in Manchester and so being local I could hardly miss the opportunity to attend. It was a great event, with great talks and lots of friendly people who were really enthusiastic about WordPress.
Custom Post Types In WordPress 3.0
This article relates to WordPress 3.0. Much of the code posted here won't work on previous versions and some of the information may change in newer versions.
WordPress already comes with five different content types built into the system.
Posts
Comments
Submitted by Brett Szemple on Fri, 01/07/2011 - 06:37
PermalinkSubmitted by giHlZp8M8D on Fri, 01/07/2011 - 09:04
PermalinkThis function is awesome, thanks so much!
Note to others: this function will not automatically include posts from a custom post type, but you can add that like so:
$tmpPosts = get_posts('post_type=whatever&category=' . $cat->cat_ID);
Perhaps there's a more elegant option, but that worked for me! Hope it helps somebody.
Submitted by Melanie Richards on Sun, 05/22/2011 - 06:29
PermalinkYour script works nice in normal categories :) but its not work with custom post type taxonomies i change this line
<code>$tmpPosts = get_posts('post_type=headline&category=' . $cat->cat_ID);</code>
But no categories shows :(
Submitted by abdullah on Wed, 07/13/2011 - 16:46
PermalinkSubmitted by hire php devel… on Fri, 04/12/2013 - 09:37
PermalinkAdd new comment