Where to place edit?
-
Newbie here – trying to alphabetize my posts. I found info on how to get my posts to sort alphabetically which advised to Edit your theme’s index.php with the following
==============================
?php
// we add this, to show *all* posts sorted
// alphabetically by title
$posts = query_posts($query_string . ‘&orderby=title&order=asc&posts_per_page=-1’);
// here comes The Loop!
if (have_posts()) : while (have_posts()) : the_post(); ?>
===============================
I did so and my page parsed incorrectly so I guess that I placed the code incorrectly. My question is where do I place this code and is this bit of code replacing code already on the page or simply added in a certain spot?
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Where to place edit?’ is closed to new replies.