Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
WordPressテーマにコメントを追加するにはどうすればよいですか。試し<?php comment_form(); ?>ましたが、何も出力されません。私は何かが足りないのですか?
<?php comment_form(); ?>
次の行を追加するだけです
<?php comments_template(); ?>
single.phpコメントテンプレートを追加/表示する場所の内部。comments.phpこれにより、ファイルがsingleテンプレートに追加/含まcomments.phpれ、テーマフォルダーでも使用できるようになります。
single.php
comments.php
single
また、 Disqusワードプレスプラグインを使用することもできます。これは非常に優れたプラグインです。
参照: コーデックスとチュートリアル。