Advertisement
wdtobibur

Wordpress Important Code

Sep 24th, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.78 KB | None | 0 0
  1. Some Wordpress Important Code For Functions.php
  2.  
  3. ####...This is code for...show title
  4. add_theme_support('title-tag')
  5. ####>>>>This is code for...header
  6.     add_theme_support('custom-header',array(
  7.         'default-image' => get_template_directory_uri().'/style/banner.jpg',
  8.    
  9.     ));
  10.  
  11. ###>>>>>>>>This Is Code For....Background
  12.     add_theme_support('custom-background');
  13. ########################
  14. <?php language_attributes(); ?>
  15. <?php bloginfo('charset'); ?>
  16. <?php echo esc_url(get_template_directory_uri()); ?>/
  17. <?php wp_head(); ?>
  18. <?php wp_footer(); ?>
  19. <?php the_author_posts_link(); ?>
  20. <?php the_category(',') ?>
  21. <?php comments_popup_link('No Comment','One Comment','% Comments','Comment_style','Comment Off'); ?>
  22. <?php the_permalink();?>
  23. <?php the_title();?>
  24. <?php the_post_thumbnail();?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement