Add meta description on Anchor CMS default theme
In Anchor CMS default themes (version 0.9.2), it show the site description as a meta description for all pages & posts. Basically, the developers of Anchor CMS don’t like to consider such SEO matters.
If Google realize that our meta description is not good for our content, it will show some random lines of text related with our content in our web pages as a search description!
But if you are a SEO buddy, you have option to deliver unique meta description for Anchor CMS. With this code snippet, we use post description as a content for meta description tag. That means, our post / page description will appear as search description in Search Engine result Pages.
Currently, Anchor CMS don’t support plugins & child themes (version 0.9.2). So now we try to edit our theme files.
- First we want to select our current theme from theme folder.
- Then we want to open header file (
header.php
) inside theme folder. - Just replace our current title tag with our modified title & meta description tag shown below.
</ul>
<?php if(is_article()): ?>
<title><?php echo article_title(); ?> | <?php echo site_name(); ?></title>
<meta name="description" content="<?php echo article_description(); ?>">
<?php elseif(is_homepage()): ?>
<title><?php echo site_name(); ?> | <?php echo site_description(); ?></title>
<meta name="description" content="<?php echo site_description(); ?>">
<?php elseif(is_page()): ?>
<title><?php echo page_title(); ?> | <?php echo site_name(); ?></title>
<meta name="description" content="<?php echo site_description(); ?>">
<?php endif; ?>
- Save file & reload your blog. You can view source code of web page to ensure that our meta description tag show that post’s description as a content.
Looking for a skilled WordPress/WooCommerce developer? I'm currently available for freelance, contract, or full-time remote opportunities! Let's create something amazing together. Send me a quick message, and I'll respond within 24 hours!
Recent Posts
- Automating Code Linting with GitHub Actions for WordPress Plugins
- Comprehensive Guide to Linting PHP, JavaScript, and CSS in WordPress Plugins Using Composer
- The Ultimate Guide to Indexing in Database Design
- Understanding 'update_meta_cache' in WordPress - When to Use It, When Not to, and Its Impact on Database Queries
- A Guide to Configuring JavaScript and SCSS Paths in WordPress Plugins with @wordpress/scripts
Your Questions / Comments
If you found this article interesting, found errors, or just want to discuss about it, please get in touch.