web-dev-qa-db-fra.com

comment personnaliser bonjour plugin dolly?

J'essaie de jouer avec le plugin Hello Dolly. Je veux que ce plugin fonctionne sur le front-end. Est-il possible d'amener Hello Dolly au début? Ou cela affectera-t-il mon site web existant?

3
Rasika Wadibhasme

Dans votre thème, ajoutez une action personnalisée dans un modèle où vous souhaitez afficher le résultat:

do_action( 'show_lyrics' );

Cela ne fait rien pour lui-même. Vous pouvez maintenant ajouter la fonction hello_dolly en tant que rappel pour cette action dans votre functions.php:

if ( function_exists( 'hello_dolly' ) ) {
    add_action( 'show_lyrics', 'hello_dolly' );
}
6
fuxia