Hello,
I want a mirror page of default home page with all the posts of the site. Or please tell how to use loop.php code for custom post which can show all the post with newly added first.
Thank you,
Parth Goradia.
Hello,
I want a mirror page of default home page with all the posts of the site. Or please tell how to use loop.php code for custom post which can show all the post with newly added first.
Thank you,
Parth Goradia.
This might be helpful:
http://codex.wordpress.org/The_Loop
Look up the loop
<?php query_posts('post_type=Custom_post_type_name'); ?>
<?php while (have_posts()) : the_post(); ?>
<!-- format for output go here -->
<?php endwhile;?>Thank you very much Shibu and Justin.
I have created a template and make a page which is using this template. Now I able to put all the posts in that page. But the problem is of "expert". It's not coming with the post Do you have any solution for this?
Thanks in advance,
Parth.
You must log in to post.