shortcode in widget title
-
Hello,
I want to use icon shortcode in widget title. My code:
add_filter(‘widget_title’, ‘do_shortcode’);
//Creates a shortcode that displays a ship icon
add_shortcode(‘icon-ship’, ‘cruise_shortcode_iconship’);function cruise_shortcode_iconship( $attr ){
$output = ‘‘;
return $output;
}This code works for every widget but doesn’t work for Same Category Post. Can you suggest what should I do?
Thank you,
Oksana
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘shortcode in widget title’ is closed to new replies.