Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- /**
- * WordPress:
- * Protect custom post type with a predefined password
- */
- add_action( 'the_post', function( $post ){
- if ( $post->post_type == 'gallery' ) { // Write the custom post type ID here
- $post->post_password = 'MyP@sSW0rD'; // The predefined password goes here
- }
- } );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement