Sarathlal N

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.

</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; ?>

Got a project in mind? Send me a quick message, and I'll get back to you within 24 hours!.

Recent Posts

  1. Disabling Payment Methods in WooCommerce Based on Conditions
  2. How to Update Product Quantity in WooCommerce Using Custom Code
  3. Dynamically Generating a Table of Contents in WordPress
  4. Direct Checkout in WooCommerce - Add Product to Cart from Checkout Page & Skip Shop, Product, and Cart Pages
  5. Understanding the Impact of git reset --hard Command

Your Questions / Comments

If you found this article interesting, found errors, or just want to discuss about it, please get in touch.