Les widgets WordPress reprennent le titre que vous définissez dans la section widgets. Vous pouvez remplacer le titre du widget par un titre personnalisé et du code HTML.
Instructions : Ajoutez le code suivant au fichier functions.php de votre thème WordPress.
Vous devez remplacer le texte du code ci-dessous par un titre de widget personnalisé.
add_filter('widget_title', 'change_widget_title', 10, 3); function change_widget_title($title, $instance, $wid){ return $title = str_replace('Widget Title', '<span style="color: red">Custom</span>', $title); }
Vous pouvez également aimer styliser les widgets en fonction de leur position dans la zone de widgets.
How I can change the H for the widget title? I have my titles at H5 and I want to have it at H3
This is likely dependent on the theme. You may want to create a child theme.
Greetings Kevin…is it possible to configure this to rename multiple instances of a widget that all have the same core name…using numerous ‘links’ widgets for categorization…WP 3.2.1…?
Doesn’t work for me.
what is your version of wordpress? are you getting an error if so what is the error you get?
Doesn’t work for me either it is just showing the txt as test in the front end:
PHP code can’t be added to Custom HTML widget. You may want to check out this guide on how to add PHP using a plugin: https://www.isitwp.com/properly-add-code-snippets-wordpress-site/