[ad_1]
Hello, In my WordPress the author who published the post name and nickname shows at source code at aioseo-schema, I want to delete just the author name. every code i try it not working or remove all aioseo meta data and it is disabled the sharing features and facebook cant get featured image.
Last code i tried, and it is remove all meta data from the source code
add_filter( 'aioseo_disable', 'aioseo_disable_term_output' );
function aioseo_disable_term_output( $disabled ) {
if ( is_singular() || is_category() || is_tag() || is_tax() ) {
return true;
}
return false;
}Please if you can help.
