MichaelH
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: pages not appearingSee what happens if you update your Permalinks via Administration > Settings > Permalinks
Forum: Plugins
In reply to: Display posts on a page for specific tagsYou probably need to delete
'include' => '1,2,3',as that is there for an example–so delete it or use the id for you your tags there.
Forum: Fixing WordPress
In reply to: recent post in a category<?php $cat_id = get_cat_ID('yourcategoryhere'); $args=array( 'cat' => $cat_id, 'post_type' => 'post', 'post_status' => 'publish', 'posts_per_page' => 3, 'caller_get_posts'=> 1 ); $my_query = null; $my_query = new WP_Query($args); if( $my_query->have_posts() ) { while ($my_query->have_posts()) : $my_query->the_post(); ?> <p><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></p> <?php endwhile; } wp_reset_query(); // Restore global post data stomped by the_post(). ?>Related:
Stepping Into Template Tags
Stepping Into Templates
Template Hierarchy
Page TemplateForum: Plugins
In reply to: Links in Post copy to blogrollNever used this but maybe of some use
http://wordpress.org/extend/plugins/link-harvest/Forum: Fixing WordPress
In reply to: Blank list of categories when adding new postJust a guess, but maybe a plugin is causing the problem so try deactivating them all and see if that fixes.
Forum: Fixing WordPress
In reply to: Need help with the List category posts plugin!Use the template tag, wp_list_categories(), to list categories. That plugin lists POSTS.
<?php wp_list_categories('orderby=name&show_count=1&use_desc_for_title=0'); ?>You would probably put that code in a Page Template.
For Review:
Stepping Into Template Tags
Stepping Into Templates
Template HierarchyNote: I deleted your other thread of the same subject
Forum: Fixing WordPress
In reply to: Display Post on a Page.Forum: Plugins
In reply to: Retrieving data from an external mysql databaseIf you put those tables in the same database as your other WordPress tables you can access those tables with wpdb.
But consider some of these options:
http://wordpress.org/support/topic/pros-and-cons-of-adding-tables-to-the-wp-db?replies=8#post-1201613Forum: Fixing WordPress
In reply to: Changing names?In Administration > Settings > Permalinks set Category base to projects.
Forum: Fixing WordPress
In reply to: Need a plugin – How to find a plugin author?Please consider posting a “New Job Request” [1] [2] to have a professional work with you.
[1] http://jobs.wordpress.net/postajob.php
[2] http://www.elance.com/php/search/main/eolsearch.php?matchType=profile#page=1&matchKeywords=wordpress&catFilter=100Forum: Fixing WordPress
In reply to: Pulling posts to different pagesCould put a simple loop in your Page Template. The Pages article has some examples. Essentially it is something like:
<?php $args=array( 'post_type' => 'post', 'post_status' => 'publish', 'posts_per_page' => 2, 'caller_get_posts'=> 1 ); $my_query = null; $my_query = new WP_Query($args); if( $my_query->have_posts() ) { while ($my_query->have_posts()) : $my_query->the_post(); ?> <p><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></p> <?php the_content(); endwhile; } wp_reset_query(); // Restore global post data stomped by the_post(). ?>Forum: Fixing WordPress
In reply to: Fix for blank screen admin panel!Might be helpful, but just so it is clear, the standard wp-config.sample.php file DOES NOT have a closing
?>so that someone would have had to put that in their file.Forum: Plugins
In reply to: make i like this plugin display on category pagesForum: Fixing WordPress
In reply to: Moving the Wp-includes for my Install ChecklistI don’t think that there is something like that.
Forum: Fixing WordPress
In reply to: need a simple post navigationMight look at plugins such as wp-pagenavi or even a breadcrumb plugins to see if there is something you might use (or change)
http://wordpress.org/extend/plugins/wp-pagenavi/
http://www.google.com/search?q=wordpress+plugin+breadcrumbs