Hi there,
are [current_year], [site_title], [site_title] shortcode defined somewhere in your child theme or in a plugin?
Because without shortcode definition and callback functions they don’t exists.
Here more from the codex: https://codex.ww.wp.xz.cn/Shortcode_API
I always used this, when I use lot of themes and this works. So, I think here this working too. I didn’t definied this because I think this is universal shortcodes and working in every templates
So, this theme haven’t defined this? And I have to do this?
No, I’m sorry, our theme doesn’t define such shortcodes, and this is the reason why they aren’t working
Anyway, they are pretty easy to implement: just add the following code at the end of functions.php file of Proteo theme or child theme
add_shortcode( 'current_year', function() {
return date_i18n( 'Y' );
} );
add_shortcode( 'site_title', function() {
return get_option( 'blogname' );
} );
Hope this helps