我正在尝试使页面字幕(http://www.nashebistro.cz/)为当前日期。
我已经尝试使用简码(https://wordpress.org/plugins/shortcode-for-current-date/)和Php <?php echo date(‘Y’); ?>, 但短代码无法正确显示, 而Php代码则什么也不显示。
我真的很感谢任何解决方案, 提示和建议。
这就是字幕设置的样子。
#1
做这个。你必须创建一个新的DateTime实例并将其格式化为可以为html读取的字符串。
<?php echo date_format(new DateTime('Y'), "Y"); ?>
#2
你也可以尝试<?php the_time(‘Y’); ?>
#3
请尝试使用本机WordPress功能” date_i18n”进行此操作。这样你就可以用文本(以你的wordpress语言)显示月份
<?php echo date_i18n( 'Y-m-d' ); ?>
https://codex.wordpress.org/Function_Reference/date_i18n
或将它与ShortCode一起使用, 并将其放在你的functions.php中
if (!function_exists('topdaweb_shortcode_currentdate')) :
function topdaweb_shortcode_currentdate($atts) {
return date_i18n( 'Y-m-d' );
}
add_shortcode('currentdate', 'topdaweb_shortcode_currentdate');
endif;
评论前必须登录!
注册