我在描述框中为每个类别编写文本,我需要在此文本中动态显示日期,而不是每个月编辑它。是否有一些插件或者你可以帮忙解决一些代码。
示例:的
2015年4月的文章
答案 0 :(得分:1)
这可以通过使用短代码来完成,您需要编写自己的,因为没有,但它看起来像这样;
> description: Lorem impusm asd [custom_date] another time...
[custom_date]
是Wordpress中的自定义短代码(您将编写)。这是在运行时生成的。您可以在functions.php
文件中添加快捷方式代码。查看用于编写短代码的API。
https://codex.wordpress.org/Shortcode_API
function.php
// [custom_date date="15/03/2015"]
function custom_date_func($atts) {
$a = shortcode_atts( array(
'date' => '01/01/1900' //default value for `date` attr.
), $atts );
// You can do some calculation date variable.
return "date = {$a['date']}"; //this will return: 15/03/05
}
add_shortcode('custom_date', 'custom_date_func');
预览行动中的代码