This file contains 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 | |
//* Do NOT include the opening php tag | |
add_filter( 'stylesheet_uri', 'custom_replace_default_style_sheet', 10, 2 ); | |
/** | |
* Replace main theme style sheet with custom one if viewing post in a particular category. | |
* | |
* Note: Replace X with the category ID you want to target. | |
*/ | |
function custom_replace_default_style_sheet( $stylesheet, $stylesheet_dir ) { |
This file contains 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 | |
//** Redirect if not logged in | |
if ( ! is_user_logged_in() && 'wp-login.php' !== $pagenow ) { | |
wp_redirect( wp_login_url() ); | |
exit; | |
} |