Making Widgets Clickable Messed up my FB title
-
Hello, my website is http://HeatNation.com and I currently added this code to the functions.php template to make my widget titles clickable. However it seems to have made the color of my facebook title widget red. Does anyone know what happened and how I can fix this?
function widget_title_link( $title ) {
if( $title == “Categories” ) {
return ““.$title.”“;
}
elseif( $title == “Pages” ) {
return ““.$title.”“;
}
else {
return ““.$title.”“;
}
}
add_filter( ‘widget_title’, ‘widget_title_link’ );
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
The topic ‘Making Widgets Clickable Messed up my FB title’ is closed to new replies.