• Resolved ashf

    (@ashf)


    Is there such filter hook?
    I would like to add a taxonomy term to each post tile.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Maya

    (@tdgu)

    Hi,
    You can use the filter pto/interface_item_data. This comes with 2 arguments, $item_details and $page.
    So you can call the filter like this:

    add_filter ( 'pto/interface_item_data', '_pto_interface_item_data', 10, 2 );
    function _pto_interface_item_data( $item_details, $page )
    {
    ..your code..
    return $item_details;
    }

    Thanks

    Thread Starter ashf

    (@ashf)

    Thank you!
    I will try it.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Filter hook for post title on Re-Order screen’ is closed to new replies.