WordPress自定义文章类型+(YARPP)

3

我想在我的自定义文章类型页面中添加(YARPP)。

我想将其添加到的自定义文章类型相当复杂,我正在寻找放置YARPP提供的代码的位置。

这是我找到的有关将代码放入自定义文章类型的支持:

http://wordpress.org/support/topic/plugin-yet-another-related-posts-plugin-making-yarpp-caching-feature-work-for-custom-post-types

这是我的代码:

function property_listing() {
$args = array(
    'description' => 'Property Post Type',
    'show_ui' => true,
    'menu_position' => 4,
    'exclude_from_search' => true,
    'labels' => array(
        'name'=> 'Property Listings',
        'singular_name' => 'Property Listings',
        'add_new' => 'Add New Property', 
        'add_new_item' => 'Add New Property',
        'edit' => 'Edit Properties',
        'edit_item' => 'Edit Property',
        'new-item' => 'New Property',
        'view' => 'View Property',
        'view_item' => 'View Property',
        'search_items' => 'Search Properties',
        'not_found' => 'No Properties Found',
        'not_found_in_trash' => 'No Properties Found in Trash',
        'parent' => 'Parent Property'
    ),
    'public' => true,
    'capability_type' => 'post',
    'hierarchical' => false,
    'rewrite' => true,
    'query_var' => true,
    'supports' => array('title', 'editor', 'thumbnail', 'author', 'comments')
);
register_post_type( 'property' , $args );
flush_rewrite_rules();

有什么想法吗?

2个回答

4

是的,在数组末尾看起来很容易:

我添加了:'yarpp_support' => true

  function property_listing() {

        $args = array(
            'description' => 'Property Post Type',
            'show_ui' => true,
            'menu_position' => 4,
            'exclude_from_search' => true,
            'labels' => array(
                'name'=> 'Property Listings',
                'singular_name' => 'Property Listings',
                'add_new' => 'Add New Property', 
                'add_new_item' => 'Add New Property',
                'edit' => 'Edit Properties',
                'edit_item' => 'Edit Property',
                'new-item' => 'New Property',
                'view' => 'View Property',
                'view_item' => 'View Property',
                'search_items' => 'Search Properties',
                'not_found' => 'No Properties Found',
                'not_found_in_trash' => 'No Properties Found in Trash',
                'parent' => 'Parent Property'
            ),
            'public' => true,
            'capability_type' => 'post',
            'hierarchical' => false,
            'rewrite' => true,
            'query_var' => true,
            'supports' => array('title', 'editor', 'thumbnail', 'author', 'comments'),
            'yarpp_support' => true
    );

       register_post_type( 'property' , $args );
       flush_rewrite_rules();
    }

1

尝试将以下代码添加到您的主题的functions.php文件中:

function wpurp_register_post_type( $args )
{
    $args['yarpp_support'] = true;
    return $args;
} 

add_filter( 'wpurp_register_post_type', 'wpurp_register_post_type' ); 

您也可以将此添加到子主题中,这样您就不必担心更新主题。


网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接