mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
8 lines
255 B
Text
8 lines
255 B
Text
add_filter( 'aioseo_description', 'aioseo_truncate_description' );
|
|
|
|
function aioseo_truncate_description( $description ) {
|
|
if ( function_exists( 'mb_substr') ) {
|
|
return mb_substr( $description, 0, 160 );
|
|
}
|
|
return substr( $description, 0, 160 );
|
|
}
|