Before_title & after_title
-
First of all thanks for developing this simple but very useful plugin. In using this plugin I found one minor flaw in the code, the html tags around the widget title are hard coded <h4>, I believe it is better to use $before_title and $ after_title. Unless there is a very valid reason from your sde to do it this way I would like to suggest the following code:
/*
* Output Widget
*/
……..
if($titleEnable == ‘true’){
echo $before_title;
echo the_title();
echo $after_title;
}
?>
……….Thanks a lot for considering, keep up the good work!!
- The topic ‘Before_title & after_title’ is closed to new replies.