mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-05 12:32:23 +08:00
7 lines
233 B
Text
7 lines
233 B
Text
add_filter('wpseo_breadcrumb_single_link', 'remove_breadcrumb_title' );
|
|
function remove_breadcrumb_title( $link_output) {
|
|
if(strpos( $link_output, 'breadcrumb_last' ) !== false ) {
|
|
$link_output = '';
|
|
}
|
|
return $link_output;
|
|
}
|