Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!--------------------------------------wordpress basic coder for all template--------------------------------------------------------->
- <!--------------------css,js,images daynamic----------------------------------->
- <?php echo get_template_directory_uri();?>
- <!---------------------------------head,footer------------------------------------>
- <?php get_header();?>
- <?php get_footer();?>
- <!----------------------------post loop--------------------------------------------->
- <?php if(have_posts()) : ?>
- <?php while (have_posts()) : the_post(); ?>
- <!-- Your Post Query here -->
- /*You must be write post in div for easily styling.Here I write our post info, post content,everythings about post .*/
- <?php endwhile; ?>
- <?php endif; ?>
- <!-------------------------------some code using in post loop------------------------------------------>
- <?php get_template_part('file_name'); ?>/*call for slider or another file*/
- <?php the_title();?>/*post title*/
- <?php the_content();?>/*post content*/
- <?php the_category(', '); ?> /*post in which category*/
- <?php the_time('M d, Y') ?> /*post on*/
- <?php the_permalink(); ?> /*post permalink*/
- <?php the_excerpt(); ?> /*post summary*/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement