Skip to content

Instantly share code, notes, and snippets.

View ixkaito's full-sized avatar

Kite ixkaito

View GitHub Profile
<?php
function my_must_login_pages() {
if ( is_feed() ) // フィードの時は除外
return;
$loginflg = false; // 条件が増えてもいいようにフラグを作っておく。 デフォルトはfalse
if ( is_singular( 'works' ) && has_term( 'private', 'category' ) ) { // カスタム投稿タイプ works の個別記事でかつカスタムタクソノミー works_cat で タームが private
$loginflg = true;