This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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; |