mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
7 lines
189 B
Text
7 lines
189 B
Text
add_filter( 'aioseo_title', 'aioseo_filter_title' );
|
|
function aioseo_filter_title( $title ) {
|
|
if ( strlen($title) > 60 ) {
|
|
$title = substr($title, 0, 60);
|
|
}
|
|
return $title;
|
|
}
|