remove older posts link [closed]

Are you adding this in a child theme’s functions.php file? From what I read, you can use these empty functions to accomplish what you want. function childtheme_override_nav_above() { } function childtheme_override_nav_below() { } http://themeshaper.com/forums/topic/how-to-remove-nav-from-single-post#post-17191

Custom Fields – Taller editing area

Large »Custom Field« Textareas. Gladly those are easy to target. Wrapped up in a small plugin: <?php ! defined( ‘ABSPATH’ ) AND exit; /* Plugin Name: (#65922) »kaiser« Bigger custom field textarea */ function wpse65922_big_customfield_textarea() { ?> <style type=”text/css”> #the-list textarea, #newmeta textarea { height: 200px; } </style> <?php } add_action( ‘admin_head-post.php’, ‘wpse65922_big_customfield_textarea’ ); add_action( … Read more

Custom Post Type Nav to Subpage

You say that you know about show_in_menu parameter for register_post_type() but it seems like you missed the options for this parameter: ‘false’ – do not display in the admin menu ‘true’ – display as a top level menu ‘some string’ – If an existing top level page such as ‘tools.php’ or ‘edit.php?post_type=page’, the post type … Read more

Action hook for editing post

Not a real answer. Take a look the files that use save_post and edit_post It will lead you to the hook post_updated Take a look and see if you can find a hook you need. Keep in mind that you might need to do some checks in the hook. You’ll figure it out.