Wordpress创建新帖子状态?

时间:2010-10-21 16:56:17

标签: php wordpress status meta

在Wordpress中,您可以获得默认的帖子状态:已发布,草稿和待审核。是否可以通过活动主题的function.php文件注册它们来添加更多帖子类型?

还可以编辑Publish Meta Box的标签吗?我提交的内容真的不是发布......

同样想添加我只想在我制作的自定义帖子类型中进行这些更改。

亲切的问候

斯科特

4 个答案:

答案 0 :(得分:18)

从WP 3.0开始,您可以使用register_post_status()函数(http://hitchhackerguide.com/2011/02/12/register_post_status/)将新状态添加到帖子类型。

WP本身使用register_post_status()在init上使用wp-includes / post.php(http://hitchhackerguide.com/2011/02/11/create_initial_post_types/)中的create_initial_post_types()函数注册默认的“已发布”,“草稿”等状态。

查看这些链接中的代码,您可以了解如何使用该功能。

我希望这有助于您开始使用!

答案 1 :(得分:2)

如果你知道怎么做,你可以写一个插件。你必须深入研究文档或类似的插件http://wordpress.org/extend/plugins/edit-flow/或这一个http://wordpress.org/extend/plugins/custom-post-type-ui/

使用“Hooks,Actions和Filters”,您可以更改管理界面,请参阅此处http://codex.wordpress.org/Plugin_API

到目前为止,我只编写了一个简单的插件,而且我不知道你必须遵循的确切步骤......

祝你好运!

答案 2 :(得分:1)

您可以使用register_post_status函数添加自定义帖子状态。请参阅http://core.trac.wordpress.org/browser/tags/3.2.1/wp-includes/post.php

中的create_initial_post_types()

但请注意,这并未集成到Wordpress后端UI中。

答案 3 :(得分:1)

/**
 * PostStatusExtender
 * 
 * @author Hyyan Abo Fakher<hyyanaf@gmail.com>
 */
class PostStatusExtender
{

    /**
     * Extend 
     * 
     * Extend the current status list for the given post type 
     * 
     * @global \WP_POST $post
     * 
     * @param string $postType the post type name , ex: product
     * @param array $states array of states where key is the id(state id) and value
     *                      is the state array 
     */
    public static function extend($postType, $states)
    {

        foreach ($states as $id => $state) {
            register_post_status($id, $state);
        }

        add_action('admin_footer-post.php', function() use($postType, $states) {

            global $post;
            if (!$post || $post->post_type !== $postType) {
                return false;
            }

            foreach ($states as $id => $state) {

                printf(
                        '<script>'
                        . 'jQuery(document).ready(function($){'
                        . '   $("select#post_status").append("<option value=\"%s\" %s>%s</option>");'
                        . '   $("a.save-post-status").on("click",function(e){'
                        . '      e.preventDefault();'
                        . '      var value = $("select#post_status").val();'
                        . '      $("select#post_status").value = value;'
                        . '      $("select#post_status option").removeAttr("selected", true);'
                        . '      $("select#post_status option[value=\'"+value+"\']").attr("selected", true)'
                        . '    });'
                        . '});'
                        . '</script>'
                        , $id
                        , $post->post_status !== $id ? '' : 'selected=\"selected\"'
                        , $state['label']
                );

                if ($post->post_status === $id) {
                    printf(
                            '<script>'
                            . 'jQuery(document).ready(function($){'
                            . '   $(".misc-pub-section #post-status-display").text("%s");'
                            . '});'
                            . '</script>'
                            , $state['label']
                    );
                }
            }
        });


        add_action('admin_footer-edit.php', function() use($states, $postType) {

            global $post;

            if (!$post || $post->post_type !== $postType) {
                return false;
            }

            foreach ($states as $id => $state) {
                printf(
                        '<script>'
                        . 'jQuery(document).ready(function($){'
                        . " $('select[name=\"_status\"]' ).append( '<option value=\"%s\">%s</option>' );"
                        . '});'
                        . '</script>'
                        , $id
                        , $state['label']
                );
            }
        });

        add_filter('display_post_states', function($states, $post) use($states, $postType) {

            foreach ($states as $id => $state) {
                if ($post->post_type == $postType && $post->post_status === $id) {
                    return array($state['label']);
                } else {
                    if (array_key_exists($id, $states)) {
                        unset($states[$id]);
                    }
                }
            }

            return $states;
        }, 10, 2);
    }

}

这里如何使用

add_action('init', function() {
    PostStatusExtender::extend(self::NAME, array(
        'sold' => array(
            'label' => __('Sold', 'viasit'),
            'public' => true,
            'exclude_from_search' => true,
            'show_in_admin_all_list' => true,
            'show_in_admin_status_list' => true,
            'label_count' => _n_noop('Sold <span class="count">(%s)</span>', 'Sold <span class="count">(%s)</span>'),
        )
    ));
});

修改:修复了代码中的拼写错误。