WordPress – add help text under category list(right side) in post edit page

There is not available action and filter hook to modify of taxonomy meta boxes html like admin_post_thumbnail_html. so here is a trick to add descrition below category.you have to create new metabox for help then move to category div. # Add new meta box for help description add_action( ‘add_meta_boxes’, ‘add_help_desc_meta_box’, 0 ); function add_help_desc_meta_box() { … Read more

Unable to access admin web page

I solved this by following the instructions here; http://www.beyondmyfrontdoor.com/wp/how-to-fix-wordpress-reporting-the-wrong-php-version/ I turned out that the .htaccess file was loading an old version of php as follows; # Use PHP55 AddHandler application/x-httpd-php55 .php <IfModule mod_suphp.c> suPHP_ConfigPath /opt/php55/lib </IfModule> I commented this out and it now allows me access to the admin web page again.

Highlight active Admin Menu when added though add_menu_page

add_filter( ‘parent_file’, ‘parent_file_hover’ ); function parent_file_hover( $parent_file ) { global $pagenow; if ( $pagenow == ‘post.php’) $parent_file = “post.php?post={$_REQUEST[‘post’]}&action=edit”; elseif($pagenow == ‘post-new.php’) $parent_file = “post-new.php?post_type={$_REQUEST[‘post_type’]}”; return $parent_file; }