如何在WordPress的类别描述中添加当前日期?

时间:2015-04-12 18:28:22

标签: wordpress dynamic categories

我在描述框中为每个类别编写文本,我需要在此文本中动态显示日期,而不是每个月编辑它。是否有一些插件或者你可以帮忙解决一些代码。

示例:

2015年4月的文章

1 个答案:

答案 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]短代码的模板
// [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');

预览行动中的代码

Preview of code working