Advertisement
shakil97bd

Wordpress theme development Very Essential Code

Feb 2nd, 2015
455
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.19 KB | None | 0 0
  1. ********************* Wordpress theme development Very Essential Code *******************
  2.  
  3.  
  4.         <?php the_title(); ?>               //For post title
  5.         <?php the_content(); ?>             //For post content(for full content)
  6.         <?php echo excerpt(55); ?>          //For post content(excerpt content)
  7.         <?php the_permalink(); ?>           //For post link
  8.         <?php the_author_posts_link(); ?>   //For author name (with author all post link)
  9.         <?php the_author(); ?>              //For author name only
  10.         <?php the_time('M d, Y') ?>         //For post date/time
  11.         <?php the_category(', '); ?>        //For post category
  12.         <?php comments_popup_link(); ?>     //For comments numbers and link
  13.         <?php echo esc_url( home_url( '/' ) ); ?>   //For home url
  14.         <?php echo get_avatar( get_the_author_email(), '20' ); ?>       //For author Avatar
  15.  
  16.  
  17.  
  18. <?php the_post_thumbnail('post-image', array('class' => 'post_thumb_img')); ?>      //For post featured Image
  19.  
  20.  
  21.  
  22.  
  23. Post edite link from font-end
  24. ====================================================
  25.  
  26. Default Usage
  27. ==============
  28. <?php edit_post_link(); ?>
  29.  
  30. Usage with markup
  31. ===================
  32. <?php edit_post_link( __( 'Edit', 'zippy' ), '<footer class="entry-meta"><span class="edit-link">', '</span></footer>' ); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement