You appear to be a bot. Output may be restricted
Description
Display the post comparison tableFields to choose from are:
[ID] => 2 [post_author] => 1 [post_date] => 2012-09-28 10:02:50 [post_date_gmt] => 2012-09-28 10:02:50 [post_content] => [post_title] => Sample Page [post_excerpt] => [post_status] => publish [comment_status] => open [ping_status] => open [post_password] => [post_name] => sample-page [to_ping] => [pinged] => [post_modified] => 2012-09-28 10:02:50 [post_modified_gmt] => 2012-09-28 10:02:50 [post_content_filtered] => [post_parent] => 0 [guid] => http://qw/wpms/site-2/?page_id=2 [menu_order] => 0 [post_type] => page [post_mime_type] => [comment_count] => 0 [filter] => raw
Usage
OIK_Clone_Compare_List_Table::display();
Parameters
Returns
voidSource
File name: oik-clone/admin/class-oik-clone-compare-list-table.phpLines:
1 to 21 of 21
function display() { stag( "table", "wp-list-table widefat" ); stag( "thead"); bw_tablerow( array( "Field", "Source", "Comparison", "Target" ) ); etag( "thead" ); $this->compare( "ID" ); $this->compare( "post_title" ); $this->compare( "post_name" ); $this->compare( "post_modified" ); $this->compare( "post_content" ); $this->compare( "post_excerpt" ); $this->compare( "post_type" ); $this->compare( "post_mime_type" ); $this->compare( "post_status" ); $this->compare( "post_parent" ); $this->compare( "guid" ); $this->compare_post_meta(); etag( "table" ); }View on GitHub