你好,我收到一篇主题如下的帖子:
$footer_post = get_post(pll_get_post(620));
echo $footer_post->post_content; // Load contents of the page
在页脚中显示post(620)的内容。
在函数中。php我有:
function year_shortcode() {
$year = date(\'Y\');
return $year;}
add_shortcode(\'YEAR\', \'year_shortcode\');
问题是,当我写[年]并尝试在该特定帖子中使用shorcode时,它将呈现为[年],而不是2019年。这是一个bug还是我必须更改代码?当我在一个普通的站点中使用短代码时,它会正确地呈现。
WordPress 5.2.4最新版本。