Home / Admin / Append specific string to the SEO Title of each post
Duplicate Snippet

Embed Snippet on Your Site

Append specific string to the SEO Title of each post

This snippet can be used to append a specific string to the SEO Title of each post on the website.

20+
Code Preview
php
<?php
add_filter( 'aioseo_title', 'aioseo_filter_title' );
function aioseo_filter_title( $title ) {
   if ( is_singular() ) {
      return $title . 'some additional title content here';
   }
   return $title;
}

Comments

Add a Comment