如何在 WordPress 的类别描述中添加当前日期?
How to add current date in category description in WordPress?
我在描述框中为每个类别写了文本,我需要在文本中动态显示日期,而不是每个月都编辑它。有没有一些插件或者你能帮忙写一些代码。
示例:
2015 年 4 月的文章
这可以通过使用简码来完成,你需要自己写,因为有 none 但它看起来有点像这样;
> description: Lorem impusm asd [custom_date] another time...
[custom_date]
是 Wordpress 中的自定义短代码(您将编写)。这是在 运行 时间生成的。您在 functions.php
文件中添加快捷方式代码。查看 API 以编写短代码。
https://codex.wordpress.org/Shortcode_API
[custom_date] 简码模板 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');
实际代码预览
我在描述框中为每个类别写了文本,我需要在文本中动态显示日期,而不是每个月都编辑它。有没有一些插件或者你能帮忙写一些代码。
示例:
2015 年 4 月的文章
这可以通过使用简码来完成,你需要自己写,因为有 none 但它看起来有点像这样;
> description: Lorem impusm asd [custom_date] another time...
[custom_date]
是 Wordpress 中的自定义短代码(您将编写)。这是在 运行 时间生成的。您在 functions.php
文件中添加快捷方式代码。查看 API 以编写短代码。
https://codex.wordpress.org/Shortcode_API
[custom_date] 简码模板 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');
实际代码预览