Permalinks with WordPress on custom site
-
Is there somewhere I am supposed to “enable” permalinks?
I can’t find it anywhere..
Here’s my PHP loop:
<?php $posts = get_posts('numberposts=10&order=DSC&orderby=post_title'); foreach ($posts as $post) : setup_postdata( $post ); ?> <?php echo "<h2 font-family: 'Open Sans', sans-serif;>"; the_title(); echo "</h2>"; ?> <?php {the_excerpt();}?> <?php echo '<em style="font-size:15px;"> Written on '; the_date(); echo " "; ?> <?php endforeach; ?>
But, if you check my site, you will see while I managed to get a Read More link working, it just adds “/?p={post id}” to the URL and doesn’t change the result.
My loop doesn’t appear to tell it to do that, but I can’t find a specific place that describes how to do this should-be-basic task.
Can someone help here? Is there something obvious I’m missing?
Thanks!
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘Permalinks with WordPress on custom site’ is closed to new replies.