Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php /*Show post author link */?> <?php the_author(); ?>
- <!-- show post link --> <h2><a href="<?php the_permalink(); ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
- <?php /** show post content */?> <?php the_content(); ?>
- <?php /** Show edit post link */?>
- <?php edit_post_link(); ?>
- <!-- show the next/previous link -->
- <?php next_posts_link( 'Older Entries' ); ?>
- <?php previous_posts_link( 'Newer Entries' ); ?>
- <!-- Comments popup link -->
- <?php comments_popup_link( 'Leave a Comment', '1 Comment', '% Comments' ); ?>
- <!-- Code for show blog name-->
- <?php bloginfo('name'); ?>
- <!-- Discription for blog -->
- <?php bloginfo(’description’); ?>
- <!-- The title of your blog -->
- <?php wp_title(); ?>
- <!-- code for stylesheet linking -->
- <?php bloginfo('stylesheet_url'); ?>
- <!-- Code for pingback url -->
- <?php bloginfo('pingback_url'); ?>
- <!-- Code for theme location -->
- <?php bloginfo('template_url'); ?>
- <!-- Code for Wordpress version -->
- <?php bloginfo('version'); ?>
- <!-- Atom feed link -->
- <?php bloginfo('atom_url'); ?>
- <!-- RSS2 feed link -->
- <?php bloginfo('rss2_url'); ?>
- <!-- url of your website -->
- <?php bloginfo('url'); ?>
- <!-- declairing for html type code -->
- <?php bloginfo('html_type'); ?>
- <!-- Code for Charset Set -->
- <?php bloginfo('charset'); ?>
- <!-- if statemant for post find/search -->
- <?php if(have_posts()) : ?>
- <!-- while statemant -->
- <?php while(have_posts()) : the_post(); ?>
- <!-- End while statemant -->
- <?php endwhile; ?>
- <!-- End if statemant -->
- <?php endif; ?>
- <!-- To get header.php -->
- <?php get_header(); ?>
- <!-- To get sidebar.php -->
- <?php get_sidebar(); ?>
- <!-- To get footer.php -->
- <?php get_footer(); ?>
- <!-- To get time and date -->
- <?php the_time('m-d-y') ?>
- <!-- To get pop-up comment's link -->
- <?php comments_popup_link(); ?>
- <!-- permanent link for you post/page -->
- <?php the_permalink() ?>
- <!-- Show category >>code -->
- <?php the_category(', ') ?>
- <!-- ID for post/page -->
- <?php the_ID(); ?>
- <!-- For post link -->
- <?php edit_post_link(); ?>
- <!-- list for link -->
- <?php get_links_list(); ?>
- <!-- Call for comment template -->
- <?php comments_template(); ?>
- <!-- Site page list -->
- <?php wp_list_pages(); ?>
- <!-- site cstegory list -->
- <?php wp_list_cats(); ?>
- <!-- get default calender -->
- <?php get_calendar(); ?>
- <!-- Get archive -->
- <?php wp_get_archives() ?>
- <!-- Navigation link for post -->
- <?php posts_nav_link(); ?>
Add Comment
Please, Sign In to add comment