Getting rid of menu items on a custom taxonomy

This is not your code I suspect, as there are really many errors in your code. I’m going to list them Firstly, you are registering your custom post type inside a function that you hook to init, which is fine. Then you register your taxonomies outside that function. What the reason bhin that is, I … Read more

admin edit link from a specific page

I am not sure I completely follow your second example. You can use get_edit_post_link() template tag, which will output the link to admin side for the current post (only for users who can edit the post). If you just want pretty link for that there is no native way, but it looks similar to what … Read more

Other than save_post any other actions on add / edit post screen?

you can use load-{page-hook}. It is called prior to the admin screen loading. add_action( ‘load-post-new.php’, ‘post_listing_page’ ); function post_listing_page() { // ‘add new’ page, you may have to check post type.. } {page-hook} on the ‘add new’ page of any post type, it is post-new.php {page-hook} on the edit page of any post type, it … Read more

Black admin bar is being hidden by page elements

The styles for the admin bar are generally printed in the head of the site, so perhaps your CSS code is being undone as the printed styles for the admin bar appear after your included style sheet. Maybe by using the wp_head action you can stop this, placing something like this in your functions file … Read more

Excerpt showing under title in admin columns

Atlast i found the solution, it was very silly mistake. It got nothing to do with plugin or theme or any code. It was one of the WordPress settings which i didn’t realize. Following pic shows the option to switch between excerpt view and list view of posts in wordpress. I by mistake selected excerpt … Read more

Disable login on multisite web sites

You can have a single login point which you can redirect to from all sites in the network, and then redirect back to the subsite after a successful login. We did something similar for the WordCamp.org network: http://meta.svn.wordpress.org/sites/trunk/wordcamp.org/public_html/wp-content/mu-plugins/wcorg-global-login.php This will probably only work for subdomains, since you can’t really set a cookie for a different … Read more