$conf, $runtime; function_exists('chdir') AND chdir(APP_PATH); $r = 'mysql' == $conf['cache']['type'] ? website_set('runtime', $runtime) : cache_set('runtime', $runtime); } function runtime_truncate() { global $conf; 'mysql' == $conf['cache']['type'] ? website_set('runtime', '') : cache_delete('runtime'); } register_shutdown_function('runtime_save'); ?>How to fix a duplicated meta description?|Programmer puzzle solving
最新消息:Welcome to the puzzle paradise for programmers! Here, a well-designed puzzle awaits you. From code logic puzzles to algorithmic challenges, each level is closely centered on the programmer's expertise and skills. Whether you're a novice programmer or an experienced tech guru, you'll find your own challenges on this site. In the process of solving puzzles, you can not only exercise your thinking skills, but also deepen your understanding and application of programming knowledge. Come to start this puzzle journey full of wisdom and challenges, with many programmers to compete with each other and show your programming wisdom! Translated with DeepL.com (free version)

How to fix a duplicated meta description?

matteradmin9PV0评论

When audit our website in Google webmaster too, I saw duplicate meta descriptions every pages. I am using: -

<?php bloginfo('description'); ?>

When audit our website in Google webmaster too, I saw duplicate meta descriptions every pages. I am using: -

<?php bloginfo('description'); ?>
Share Improve this question edited Jan 12, 2019 at 9:40 fuxia 107k39 gold badges255 silver badges461 bronze badges asked Jan 12, 2019 at 7:58 HumbleHumble 11 bronze badge
Add a comment  | 

1 Answer 1

Reset to default 2

bloginfo('description') just displays the site tagline.

‘description‘ – Displays the “Tagline” set in Settings > General. This data is retrieved from the “blogdescription” record in the wp_options table.

https://developer.wordpress/reference/functions/bloginfo/#description

So yes, it will be the same on every page.

WordPress does not add meta descriptions to pages, or have the native capability to do so. You would need to use a plugin. Most SEO plugins have this feature.

Articles related to this article

Post a comment

comment list (0)

  1. No comments so far