Change page name in admin list

You can use the_title hook to change the title of the post in the admin, something like this add_filter( ‘the_title’, ‘custom_post_title’, 10, 2 ); function custom_post_title( $title, $post_id ) { // Return early if not in the admin if ( !is_admin() ) return $title; $post_type = get_post_type( $post_id ); // You only need to change … Read more

Can I schedule my site to launch at a set time and date?

You should create a small plugin that checks the time stamp and run on an alternate page or similar. Bigger than the time stamp, the default WordPress run should work. An Example, write my answer to this question that’s not working code. The method timestamp is your key to control the logic for loading an … Read more

Read more on pages WordPress

Better to use <!–nextpage–> if you want to split content. See theme requirement: http://codex.wordpress.org/Template_Tags/wp_link_pages I don’t understand why people keep wanting “Read more” to work in Pages.

Proper procedure for wp_insert_post?

WordPress just adds a new entry, the title is not unique, but there is a field guid which is. Permalinks do get an incremental number. Yes, you should remove it from your theme, you’d better write your own plugin for this kind of stuff. I don’t totally understand what you mean, is there no menu … Read more

‘x’ Converted to html code in example: 5×10

This is performed by wptexturize(). Unfortunately it saves replacement lists as static variables which you can’t modify. So your options are: Remove wptexturize filter from related hook (depends on where you have that replacement done). Write and add your own filter that will replace converted symbol back.