function a11y_controls_shortcode() { // Generate unique ID to prevent conflicts $unique_id = uniqid('a11y_'); ob_start(); ?>…
WordPress: Remove support for tags for posts
//post: remove tags
add_action( 'init', 'unregister_tags' );
function unregister_tags() {
unregister_taxonomy_for_object_type( 'post_tag', 'post' );
}
