admin管理员组文章数量:1313006
I've added [year]
shortcode to some of my posts' titles.
I used this in functions.php
to enable this shortcode:
add_shortcode( 'year' , 'current_year' );
function current_year() {
$year = date("Y");
return "$year";
}
I then added this too to enable shortcodes in widgets:
add_filter( 'widget_text', 'do_shortcode' );
But the shortcode doesn't work in the post titles list shown by Top Posts & Pages widget by Jetpack.
How do I fix it?
本文标签: Shortcode not working in Jetpack Top Posts amp Pages widget
版权声明:本文标题:Shortcode not working in Jetpack Top Posts & Pages widget 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1741888439a2403162.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论