You are on page 1of 3

1. For calling wordpress stylesheet use following syntax: <link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?

>" type="text/css" media="screen" /> 2. For displaying title of the blog use following syntax: <title><?php wp_title('&laquo;', true, 'right'); ?> <?php bloginfo('name'); ?></title> 3. For displaying image: <img src= <?php bloginfo( template_directory )?>/images/header_bg.gif /> 4. For displaying name of the blog: <?php bloginfo('name'); ?> 5. For linking to the home page of the blog. <?php echo get_option('home'); ?> 6. For displaying blog discription: <?php bloginfo('description'); ?> 7. For displaying post title: <?php the_title();?> 8. For displaying post timing: <?php the_time('F jS, Y') ?> 9. For diplaying the author of the post: <?php the_author() ?> 10. For displaying the content of the post: <?php the_content('Read the rest of this entry &raquo;'); ?> 11. For displaying the tag of the post: <?php the_tags('Tags: ', ', ', '<br />'); ?> 12. For displaying the category of the post: <?php the_category(', ') ?> 13. For displaying Edit link of the post: <?php edit_post_link('Edit', '', ' | '); ?>

14. For displaying the link of the comments of the post: <?php comments_popup_link('No Comments &#187;', '1 Comment &#187;', '% Comments &#187;'); ?> 15. For displaying admin link: <?php wp_register(); ?> 16. For displaying login logout link: <?php wp_loginout(); ?> 17. For diplsying the pages link: <?php wp_list_pages('title_li=<h2>Pages</h2>' ); ?> 18. For displaying the Archives: <?php wp_get_archives('type=monthly'); ?> 19. For displaying the categories list: <?php wp_list_categories('show_count=1&title_li=<h2>Categories</h2>'); ?> 20. For displaying the list of bookmarks: <?php wp_list_bookmarks(); ?> 21. For diplaying the timer: <?php timer_stop(1); ?>

22. To display the page page tilte the content.

<?php get_a_post('services'); ?> <h3><?php the_title(); ?></h3> <p><?php the_content_rss('', 0, '', 50); ?> <a href="<?php the_permalink(); ?>">read more</a></p>

1364

132

You might also like