【问题标题】:Is it possible to auto fill the Wordpress title field with today's date?是否可以用今天的日期自动填充 Wordpress 标题字段?
【发布时间】:2018-09-13 21:29:37
【问题描述】:

当我点击“添加新”(这将是一个名为“天”的自定义帖子类型)时,我希望标题字段预先填写当前日期(最好是 Y-m-d 格式)。

【问题讨论】:

    标签: php wordpress datetime


    【解决方案1】:

    有一个过滤器可让您设置默认值:

    https://developer.wordpress.org/reference/hooks/default_title/

    add_filter('default_title', function ($title) {
        global $post_type;
        if ('post' == $post_type) {
            return date('Y-m-d');
        }
        return $title;
    });
    

    【讨论】:

    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2011-06-06
    • 1970-01-01
    相关资源
    最近更新 更多