Categories Help and video uploads

How you can remove Categories: part you will need to add the code below at the bottom of your theme’s functions.php file: add_filter( ‘get_the_archive_title’, function ($title) { if ( is_category() ) { $title = single_cat_title( ”, false ); } return $title; }); And when it comes to uploading videos and plans you have to contact … Read more

restrict category to only logged in User

Inside while loop of single.php you can put condition like this if(in_category(‘Catetory_slug’)){ //Specifying category whom we don’t want to see by no logged in users if(is_user_logged_in()){ //Checking if user logged in or not //code inside single.php }else{ Echo “You need to login to view this post.”; //message for no logged in users }} This can … Read more