AI Verified

Name

Remove tag and category taxonomy

Language

PHP

Rating

Voted: 0 by 0 user(s)

Codevault

ActionSkills

Scroll down to see more snippets from this codevault.

Wordpress Compatability

The author has indicated that this snippet is compatable up to wordpress version: Not Specified

Our AI bot has checked this snippet is compatable up to wordpress version: 6.1

Code Snippet Plugin Sync

Free & Pro

Download this snippet by clicking the download button, then head over to the Code Snippet Plugin settings in your wordpress admin dashboard, select the import menu then upload this file to import into your wordpress site.

Pro Only (Coming Soon)

You will be able to click a button and sync this snippet to your wordpress site automatically and from your dashboard manage all code snippets across all your wordpress sites that have the Code Snippets Pro plugin installed.

Website/ Profile URL:

https://actionskills.co

History

Last modified:

13/12/2023

Important Note

This snippet has the following status:

AI Verified

This snippet has been tested by our AI bot, see any comments below.

AI Bot Comments:

Found 0 vulnerabilities

Remove tag and category taxonomy

 
                    
1function actionskills_unregister_tags() {
2 unregister_taxonomy_for_object_type('post_tag', 'post');
3 unregister_taxonomy_for_object_type('category', 'post');
4}
5add_action('init', 'actionskills_unregister_tags');
6 
7// Remove side menu
8add_action( 'admin_menu', 'remove_default_post_type' );
9 
10function remove_default_post_type() {
11 remove_menu_page( 'edit.php' );
12}
13 
14// Remove +New post in top Admin Menu Bar
15add_action( 'admin_bar_menu', 'remove_default_post_type_menu_bar', 999 );
16 
17function remove_default_post_type_menu_bar( $wp_admin_bar ) {
18 $wp_admin_bar->remove_node( 'new-post' );
19}
20 
21// Remove Quick Draft Dashboard Widget
22add_action( 'wp_dashboard_setup', 'remove_draft_widget', 999 );
23 
24function remove_draft_widget(){
25 remove_meta_box( 'dashboard_quick_press', 'dashboard', 'side' );
26}

0

Related Snippets

Please see some snippets below related to this snippet..

General

Unverified

0

Google Tag Manager Body

Added: 7 months ago

Last Updated: 7 months ago

General

AI Verified

1

PHP: Disable Wordpress Emojis

Added: 9 months ago

Last Updated: 9 months ago

<p>Disable Wordpress emojis to improve site performance, taken from: https://kinsta.com/knowledgebase/disable-emojis-wordpress/#disable-emojis-code</p>

General

Unverified

0

dropDownDatabaseColorSurvey

Added: 2 months ago

Last Updated: 2 months ago

Black White Gray Brown Pink Cyan

Other Snippets in this Codevault

These are some popular snippets from this users codevault..

General

AI Verified

0

Disable Comments

Added: 6 months ago

Last Updated: 5 months ago

General

AI Verified

0

Remove tag and category taxonomy

Added: 6 months ago

Last Updated: 6 months ago

Divi Builder

AI Verified

0

Divi - Disable Project CPT and Taxonomy

Added: 6 months ago

Last Updated: 6 months ago