Advertisement
Guest User

meta

a guest
Aug 15th, 2017
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.41 KB | None | 0 0
  1. function add_my_meta() {
  2. if(is_single()) :
  3. $posttags = get_the_tags();
  4. if ($posttags) {
  5. $tag_names = '';
  6. foreach($posttags as $tag) {
  7.     $tag_names .= $tag->name . ',';
  8. }
  9. ?>
  10. <meta name="keywords" content="<?php echo rtrim($tag_names, ','); ?>"/>
  11. <?php } ?>
  12. <meta name="description" content="<?php echo wp_strip_all_tags(get_the_excerpt(), true); ?>"/>
  13. <?php endif;
  14. }
  15. add_action('wp_head', 'add_my_meta');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement