mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-01 11:52:25 +08:00
7 lines
205 B
Text
7 lines
205 B
Text
add_filter( 'aioseo_title', 'aioseo_filter_title' );
|
|
function aioseo_filter_title( $title ) {
|
|
if ( is_singular() ) {
|
|
return $title . 'some additional title content here';
|
|
}
|
|
return $title;
|
|
}
|