2 Snippets
<10 Favourites
<10 Downloads

Disable Author Archive

A small Code that disable the WordPress Author Archive and redirect to the Homepage

Disable Blog Posts

// Remove side menu add_action( 'admin_menu', function () { remove_menu_page( 'edit.php' ); } ); // Remove…