最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

Shortcode not working in Jetpack Top Posts & Pages widget

programmeradmin0浏览0评论

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?

发布评论

评论列表(0)

  1. 暂无评论