- Home
- Categorie
- Coding e Sistemistica
- WordPress
- Modificare le Variabili Yoast SEO
-
Modificare le Variabili Yoast SEO
ciao,
vorrei poter modificare alcune variabili di Yoast SEO, ad esempio:
la variabile (Riassunto) in (Meta descrizione) vorrei diminuire la quantità di parole che yoast estrapola in automatico dall'articolo.
qualcuno di voi ha già fatti questo tipo di variazione? e come?
1 Risposta -
Ciao,
prova a vedere qui https://wordpress.org/support/topic/how-to-customize-default-excerpt-behavior-by-yoast/
1 Risposta -
@sermatica in quale file lo devo unserire questo codice?
/*
*- Yoast SEO custom variable: excerpt
*/
// define the custom replacement callback
function get_myexcerpt() {
// get the excerpt and limit to 145 characters
$excerpt = get_the_excerpt();
return substr($excerpt, 0, 145);
}
// define the action for register yoast_variable replacments
function pjlm_register_custom_yoast_variables() {
wpseo_register_var_replacement( '%%myexcerpt%%', 'get_myexcerpt', 'advanced', 'get the excerpt' );
}// Add action
add_action('wpseo_register_extra_replacements', 'pjlm_register_custom_yoast_variables');
1 Risposta - Yoast SEO custom variable: excerpt
-
@mastertest ha detto in Modificare le Variabili Yoast SEO:
in quale file lo devo unserire questo codice?
Ciao,
dovresti chiedere al tuo programmatore di implementare il codice, qui può trovare le info https://developer.yoast.com/.