pbmaxca
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Bulk rename categoryWhat about moving bulk posts from Uncategorized to a category?
Forum: Fixing WordPress
In reply to: Including/Excluding PagesOHHHHH! I was putting the numbers after the sort…not before!
Thanks!
Forum: Plugins
In reply to: Beginner to Plug-insNevermind! I figured it out! 🙂
Forum: Plugins
In reply to: Beginner to Plug-ins<?php get_header(); ?>
<!– Container –>
<div class=”CON”><!– Start SC –>
<div class=”SCS”><?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<h1><?php the_title(); ?></h1>
<?php the_content(“<p>__(‘Read the rest of this page »’)</p>”); ?>
<?php edit_post_link(__(‘Edit’), ‘<p>’, ‘</p>’); ?>
<?php endwhile; endif; ?>
</div><!– End SC –>
<?php get_sidebar(); ?><!– Container –>
</div><?php get_footer(); ?>
So I make a chage to the page.php page, (above)…I tried to put the code:
<?php next_page(‘orderby’, ‘link’, ‘before’, ‘after’, ‘title_attr’); ?>
<?php previous_page(‘orderby’, ‘link’, ‘before’, ‘after’, ‘title_attr’); ?>
into the page, but don’t know exactly where to stick it.
Forum: Plugins
In reply to: Beginner to Plug-insI got a plug-in that does Back and Next page links.
http://wordpress.org/support/topic/43071?replies=23#post-242006 is the post it came from.
I’ve installed the plug-in and have activated it…
What is the next step?