Title Shortcode not working after changed to Newspaper Theme

Posted in: Newspaper
Post count: 1

Hi there,

After I have changed to Newspaper theme, my existing shortcode is not working anymore.

This is the shortcode: [post-title]

It should be the Title of the post.

http://forexdl.com/elders-safe-zone/

Please assist.

Thanks!

Post count: 20688

Hi,

Shortcodes provided by a plugin would still work, if the plugin is active. Shortcodes provided by one theme will most likely not work with another theme.

I believe that is supposed to display the post title, try this code in the theme or child theme functions file

function title_shortcode() {
return get_the_title();
}
add_shortcode('post-title', 'title_shortcode');

It should display the post title where used.

Thanks

Viewing 2 posts - 1 through 2 (of 2 total)
The forum ‘Newspaper’ is closed to new topics and replies.