Ho un shortcode definito in un plugin come segue:
// [tag1] -> Some Longer Text
function shortcode_example1() {
return 'Some Longer Text';
}
add_shortcode('tag1', 'shortcode_example1');
Ora, all'interno di una pagina di wordpress, sto provando ad accedere al plugin come segue:
[tag1]
Tuttavia, lo shortcode non viene eseguito e l'output è solo "[tag1]". Puoi aiutare?
Grazie per l'aiuto.
do_shortcode
filtro dal the_content
gancio? Prova a passare a un tema predefinito (il tuo tema sta usando the_content()
?) E disabilita tutti i plugin. Quindi abilitali 1 per 1 per trovare il potenziale conflitto.