Hi All, I'm having a bit of an issue trying to have a page just display the posts from one category. I'm using exec-php to allow the posting of php and the following code:
Wordpress Post from a Category
5
Hi All,
I'm having a bit of an issue trying to have a page just display the posts from one category. I'm using exec-php to allow the posting of php and the following code:
Unfortunately its returning the list and then all the other posts with the content, it can be seen at my website (I don't have enough posts yet for urls) freshbizoppsdotcom/reviews - remove the dot for a '.'
Apologies if this breaks a rule, if it does i'll change it but it helps show the issue
Any help is greatly appreciated!
Thanks
I'm having a bit of an issue trying to have a page just display the posts from one category. I'm using exec-php to allow the posting of php and the following code:
Code:
<?php query_posts('category_name=Reviews&showposts=100'); ?>
<?php while (have_posts()) : the_post(); ?>
<div><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a> </div>
<?php endwhile;?> Apologies if this breaks a rule, if it does i'll change it but it helps show the issue
Any help is greatly appreciated!
Thanks
- Kirk Ward
- [1] reply
- Ally3009
- [1] reply
Next Topics on Trending Feed
-
5