web-dev-qa-db-ja.com

グローバルに設定されている場合に特定のページIDからショートコードを控える方法

現時点では、以下のコードを使用して、すべての投稿とページにテーブルのショートコードを追加していますが、少数のページと特定のタグ付きの投稿を除外したいと思います。 (例:ページID 10、20、タグID 30)

私はこれのすべてにかなり新しいです、そして私はまだ学んでいます。

function my_shortcode_to_a_post( $content ) {
  global $post;
  if( ! $post instanceof WP_Post ) return $content;
  switch( $post->post_type ) {
    case 'post':
      return $content . '[table id=1 /]';
    case 'page':
      return $content . '[table id=1 /]';
    default:
      return $content;
  }
}

add_filter( 'the_content', 'my_shortcode_to_a_post' );

事前に助けてくれてありがとう。

2
Archi25

これを試して、結果を教えてください

function my_shortcode_to_a_post( $content ) {

  global $post;
  $disabled_post_ids = array('20', '31', '35');
  $disabled_tag_ids = array('5', '19', '25');

  $current_post_id = get_the_ID(); // try setting it to $post->ID; if it doesn't work for some reason
  if(in_array($current_post_id, $disabled_post_ids)) {
    return $content;
  }

  $current_post_tags = get_the_tags($current_post_id);

  if($current_post_tags){
    $tags_arr = array();
    foreach ($current_post_tags as $single_tag) {
      $tag_id = $single_tag->term_id;
      if(in_array($tag_id, $disabled_tag_ids)) {
        return $content;
      }
    }
  }

  switch( $post->post_type ) {
    case 'post':
      return $content . '[table id=1 /]';
    case 'page':
      return $content . '[table id=1 /]';
    default:
      return $content;
  }
}

add_filter( 'the_content', 'my_shortcode_to_a_post' );
1
Abdul Awal