Unsetting post_tag taxonomy breaks term description for other taxonomies

Try using this function to avoid your problem: function sld_unregister_taxonomy_from_object_type($taxonomy, $object_type) { global $wp_taxonomies; if ( !isset($wp_taxonomies[$taxonomy]) || !get_post_type_object($object_type) ) return false; foreach (array_keys($wp_taxonomies[$taxonomy]->object_type) as $array_key) { if ($wp_taxonomies[$taxonomy]->object_type[$array_key] == $array_key) { unset ($wp_taxonomies[$taxonomy]->object_type[$array_key]); return true; } } return false; } e.x.: function mwm_unregister_taxonomy(){ sld_unregister_taxonomy_from_object_type( ‘post_tag’, ‘post’ ); } add_action( ‘init’, ‘mwm_unregister_taxonomy’);

My post does not show up

You other posts are very much visible.This seems to be a strange behavior indeed.Your blog seems to be good enough performance wise. I would suggest you try to delete the post and prepare a new one . May be this must solve the problem .

Looking for Functions File that doesn’t Exist

As the error says you cannot redeclare a function. You need to open your child theme’s functions.php and remove the _verifyactivate_widgets() function from it. If you have copied the functions.php from the parent theme then most probably you would have to remove all the functions from the file unless any function in the parent theme … Read more