NEXT craftinamerica.org. Base setup for headless wordpress https://www.craftinamerica.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

field-title-post.php 400B

12345678910111213141516171819202122
  1. <?php
  2. class P2P_Field_Title_Post extends P2P_Field_Title {
  3. function get_data( $item ) {
  4. $data = array(
  5. 'title-attr' => $item->get_permalink()
  6. );
  7. $post = $item->get_object();
  8. if ( 'publish' != $post->post_status ) {
  9. $status_obj = get_post_status_object( $post->post_status );
  10. if ( $status_obj ) {
  11. $data['status']['text'] = $status_obj->label;
  12. }
  13. }
  14. return $data;
  15. }
  16. }