Quantcast
Channel: Topic Tag: contact-form | WordPress.org
Viewing all articles
Browse latest Browse all 5993

Jeremy Herve on "[Plugin: Jetpack by WordPress.com] Jetpack Feedback setting"

$
0
0

You can add the following code to your theme's functions.php file to hide the Feedback menu:

function jp_rm_menu() {
	if( class_exists( 'Jetpack' ) ) {
		remove_menu_page( 'edit.php?post_type=feedback' );
	}
}
add_action( 'admin_init', 'jp_rm_menu' );

Viewing all articles
Browse latest Browse all 5993

Trending Articles