MichaelH
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How to see all posts from a single user.You could also install and activate this plugin: http://wordpress.org/extend/plugins/page-links-to/
Then create a Page for each author, and in the Pages Links To put the URL for the author posts.
Also can use template tag, wp_list_authors(), to access the URL for each author.
Forum: Plugins
In reply to: Taxonomy PaginationExample of proper pagination (using the paged query var):
<?php $paged = (get_query_var('paged')) ? get_query_var('paged') : 1; query_posts('cat=3&posts_per_page='.get_option('posts_per_page').'&paged=' . $paged); ?>Forum: Plugins
In reply to: Taxonomy PaginationMight need to expand on what’s not working for you.
Using the TwentyTen theme, with default Permalins, and with Settings->Writing set to 1 post page, when I visit a taxonomy archive (archive.php used from Twenty Ten) pagination works just fine.
Forum: Plugins
In reply to: Need popular posts pluginWell maybe the author will respond with a solution
Forum: Fixing WordPress
In reply to: Posts not paginatingDeactivate plugins and switch to the TwentyTen theme and check your category archives.
Forum: Installing WordPress
In reply to: how to hide the pages in navigationIf using the Pages widget you can exclude pages – http://codex.wordpress.org/Appearance_Widgets_SubPanel
Or use the
excludeorincludeparameter with the template tag, wp_list_pages()Forum: Fixing WordPress
In reply to: Posts not paginatingTry updating your Permalinks in Settings->Permalinks.
Forum: Fixing WordPress
In reply to: Posts display in reverse order. Tried Everything to fix!Deactivate all plugins, change to the TwentyTen theme and see if the posts display in Descending order.
Forum: Fixing WordPress
In reply to: Cannot locate culprit in WPI don’t see the Edit link, at least on political/the-united-states-declaration-of-independence/
Forum: Fixing WordPress
In reply to: Page as post and translatableThen a solution like http://wordpress.org/support/topic/show-all-posts-of-a-custom-post-type?replies=2
Forum: Fixing WordPress
In reply to: Show all posts of a custom post type?Create a Page Template with the code below, then create a Page called products, and assign that Template to that Page.
<?php /** * Template Name: Page of Products * * Selectable from a dropdown menu on the edit page screen. */ ?> <?php get_header(); ?> <div id="container"> <div id="content"> <?php $type = 'products'; $args=array( 'post_type' => $type, 'post_status' => 'publish', 'posts_per_page' => -1, '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(). ?> </div><!-- #content --> </div><!-- #container --> <?php get_sidebar(); ?> <?php get_footer(); ?>Forum: Fixing WordPress
In reply to: Listing a Musician's RepertoireOne possibility–look at using Custom Fields.
Forum: Fixing WordPress
In reply to: Page as post and translatableDon’t know about the translate part, but look at the Static Front page features (i.e. Posts Page) in your Administration > Settings > Reading
Forum: Themes and Templates
In reply to: Add valueOutside The Loop you would use get_post_meta
Forum: Plugins
In reply to: [Miniposts] Sorting miniposts by dateThe ‘order’ clause does the sorting.
Consider downloading and installing Otto’s PHP Code Widget, then put that code in one of those widgets.