Place category_description in the meta description (wordpress)
问题 Header in my theme I created the following code for the meta description: <?php if (is_single() || is_page()) { ?> <meta name="description" content="<?php echo metadesc($post->ID); ?>" /> <?php }else{ ?> <meta name="description" content="<?php bloginfo('description'); ?>" /> <?php } ?> and included this code in my function.php: function metadesc($pid) { $p = get_post($pid); $description = strip_tags($p->post_content); $description = str_replace ("\n","",$description); $description = str