我需要在Wordpress中获得像Jan,Feb这样的月份。我试过了:
the_time('M')
the_time('b')
the_date('M')
get_the_date('M')
但我根本没有输出。除了M工作之外的所有其他格式,并且因为它立即打印了值,我之后无法格式化。
有什么想法吗?
答案 0 :(得分:0)
你想在哪里运行这个?请记住,the_time()必须在循环中使用,否则它将无法打印/返回:http://codex.wordpress.org/Function_Reference/the_time
希望有所帮助!
答案 1 :(得分:0)
the_time('M')
和the_date('M')
做同样的事情和工作
其他2可能没有用,因为我从未使用它尝试:
<?php the_time('F j, Y'); ?> & <?php the_time('g:i a'); ?>