field-title-post.php
401 Bytes
<?php
class P2P_Field_Title_Post extends P2P_Field_Title {
function get_data( $item ) {
$data = array(
'title-attr' => $item->get_permalink(),
);
$post = $item->get_object();
if ( 'publish' != $post->post_status ) {
$status_obj = get_post_status_object( $post->post_status );
if ( $status_obj ) {
$data['status']['text'] = $status_obj->label;
}
}
return $data;
}
}