web-dev-qa-db-ja.com

カスタム投稿タイプにコメントが表示されない - Wordpress

カスタム投稿タイプを作成しました。コメントを表示して許可します。

これはfunction.phpにあります。

// Add Custom Post Types
    add_action( 'init', 'thm_post_types' );

// Add Custom Post Types Function
    require_once ( THEME_INCLUDES . 'theme-post-types.php' );

    require_once ( THEME_INCLUDES . 'theme-comments.php' );

私のtheme-post-types.phpでは私が持っています:

register_post_type( 'product',
    array(
        'labels' => array(
            'name' => 'Product Items',
            'singular_name' => 'Product' ,
            'add_new' => 'Add New Product',
            'add_new_item' => 'Add New Product Item' ,
            'edit' => 'Edit Product',
            'edit_item' => 'Edit Product Item',
        ),
        'description' => 'Product Items.' ,
        'public' => true,
        'supports' => array( 'title', 'editor', 'thumbnail', 'custom-fields' ), // ***** i believe this is the problem ******
        'taxonomies' => array('category', 'post_tag')

    )
);
register_taxonomy( 'product_category', array( 'product' ), array( 'label' => "Categories", "singular_label" => "Category" ) );

そして最後に私のtheme-comments.phpに:

function thm_format_comment($comment, $args, $depth) {
$GLOBALS['comment'] = $comment; ?>
<li <?php comment_class(); ?> id="li-comment-<?php comment_ID() ?>">
    <div class="comment" id="comment-<?php comment_ID() ?>">
        <div class="avatar"><?php echo get_avatar( $comment, $size='80' ); ?>
        <?php comment_reply_link( array_merge( $args, array( 'depth' => $depth, 'max_depth' => $args['max_depth'] ) ) ) ?>
        </div>
        <div class="comment-text">
            <cite><?php comment_author_link(); ?></cite>
            <small><?php comment_date( 'F d, Y - G:i ' ); ?></small>
            <div class="separator-line" style="margin-bottom:10px; margin-top:5px;"></div>
            <?php if ($comment->comment_approved == '0') : ?>
                <p><em><?php _e( 'Your comment is awaiting moderation.' ); ?></em></p>
            <?php endif; ?>
            <?php comment_text() ?>
        </div>
        <div class="clear"></div>
    </div>
    </li>

私のカスタム投稿タイプphpで私は持っています:

<div id="tabs-3">
            <?php comments_template(); ?>
</div>

カスタム投稿にはコンテンツが表示されますが、コメントやコメントフォームは表示されません。

2
BBee

カスタム投稿タイプに add_post_type_support() でコメントサポートを追加してみましたか?

例えば.

<?php
add_post_type_support( 'product', array( 'comments' ) );
?>
3
Chip Bennett

あなたがこのように使うならば、それはうまくいくでしょう。

'supports' => array( 'title', 'editor', 'thumbnail', 'custom-fields', 'comments' )
0
Musarrof

これの後で、あなたは支持されたのスクリーンオプションで「ディスカッション」と「コメント」を可能にする必要があります。それができたら、各カスタム投稿タイプのコメントを有効/無効にできます。

0
kaizer1v