'; global $wp_query; $biz_vektor_options = biz_vektor_get_theme_options(); // カスタム投稿タイプの種類を取得 $postType = get_post_type(); // カスタム投稿タイプ名を取得 $post_type_object = get_post_type_object($postType); if($post_type_object){ $postTypeName = esc_html($post_type_object->labels->name); } // post のラベル名 $postLabelName = $biz_vektor_options['postLabelName']; // info のラベル名 $infoLabelName = (isset($biz_vektor_options['infoLabelName']))? $biz_vektor_options['infoLabelName'] : 'info'; // post のトップのURL $postTopUrl = (isset($biz_vektor_options['postTopUrl']))? $biz_vektor_options['postTopUrl'] : ''; // info のトップのURL $infoTopUrl = (isset($biz_vektor_options['infoTopUrl']) && $biz_vektor_options['infoTopUrl'])? $biz_vektor_options['infoTopUrl'] : home_url().'/info/'; $panListHtml .= ''; $panListHtml .= '
'; $panListHtml = apply_filters( 'bizvektor_panListHtml', $panListHtml ); echo $panListHtml;