wp admin includes post.php Notes - WordPress-Thinstall/wordpress-develop GitHub Wiki
interface AdminPostInterface {
function _wp_translate_postdata( $update = false, $post_data = null );
function edit_post( $post_data = null );
function bulk_edit_posts( $post_data = null );
function get_default_post_to_edit( $post_type = 'post', $create_in_db = false );
function post_exists($title, $content = '', $date = '');
function wp_write_post();
function write_post();
function add_meta( $post_ID );
function delete_meta( $mid );
function get_meta_keys();
function get_post_meta_by_id( $mid );
function has_meta( $postid );
function update_meta( $meta_id, $meta_key, $meta_value );
function _fix_attachment_links( $post );
function get_available_post_statuses($type = 'post');
function wp_edit_posts_query( $q = false );
function get_available_post_mime_types($type = 'attachment');
function wp_edit_attachments_query_vars( $q = false );
function _filter_query_attachment_filenames( $clauses );
function wp_edit_attachments_query( $q = false );
function postbox_classes( $id, $page );
function get_sample_permalink($id, $title = null, $name = null);
function get_sample_permalink_html( $id, $new_title = null, $new_slug = null );
function _wp_post_thumbnail_html( $thumbnail_id = null, $post = null );
function wp_check_post_lock( $post_id );
function wp_set_post_lock( $post_id );
function _admin_notice_post_locked();
function wp_create_post_autosave( $post_data );
function post_preview();
function wp_autosave( $post_data );
function redirect_post($post_id = '');
}