※社内専用

特定の投稿詳細ページ(single.php)のみコメント欄を設けたい

  • HOME
  • EPRESS-BS
  • 特定の投稿詳細ページ(single.php)のみコメント欄を設けたい
functionsフォルダの中の__setting.phpに 以下記述。

———————————————————- function replace_comment_status($data, $postarr){  if(isset($postarr[“post_category”]) && in_array(“2”, $postarr[‘post_category’], true)) {   $data[‘comment_status’] = ‘open’; }   return $data; } add_filter(‘wp_insert_post_data’, ‘replace_comment_status’, ’99’, 2); ———————————————————- in_array(“2”, $postarr[‘post_category’], true)は カテゴリIDが2だった場合、コメント欄を設ける ということです