最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

comments - using comments_template() in custom single-portfolio.php

programmeradmin1浏览0评论

I am wanting my users to be able to post comments on my portfolio page.

Ive created a portfolio page using custom posts.

On my blog i am using the comments_template(); and then on the comments.php i have the code.

On the blog side it works 100%

But when I add the comments_template(); on the portfolio single page it does nothing.

I get no errors or anything.

How do people implement comments within the portfolio pages?

Can you not use the same comment.php file for all comments, b

Thanks

I am wanting my users to be able to post comments on my portfolio page.

Ive created a portfolio page using custom posts.

On my blog i am using the comments_template(); and then on the comments.php i have the code.

On the blog side it works 100%

But when I add the comments_template(); on the portfolio single page it does nothing.

I get no errors or anything.

How do people implement comments within the portfolio pages?

Can you not use the same comment.php file for all comments, b

Thanks

Share Improve this question asked Dec 2, 2013 at 13:34 RobertRobert 1993 silver badges12 bronze badges 1
  • this may help you ryanflorence/… – Ravinder Kumar Commented Dec 2, 2013 at 17:47
Add a comment  | 

1 Answer 1

Reset to default 1

When registering a custom post type you need to enable comments. In the arguments defining the CPT, you need to include something like this:

'supports' => array( 'title', 'editor', 'author', 'thumbnail', 'excerpt', 'comments' )

The example on the Codex is shows where this option needs to go, this page also shows a list of other options you may or may not want to include: http://codex.wordpress/Function_Reference/register_post_type#Example

发布评论

评论列表(0)

  1. 暂无评论