You appear to be a bot. Output may be restricted
Description
Return an array of posts that match the given oneOther routines have been given the chance to add their filters to perform matching Each one needs to return the set of posts that they consider to be a match using oik_clone_add_to_matched() to add the set of posts into the list
Usage
$array = OIK_Clone_List_Table::match_post( $data );
Parameters
- $data
- ( object ) required – the post object to match against
Returns
array the array of matched postsSource
File name: oik-clone/admin/class-oik-clone-list-table.phpLines:
1 to 6 of 6
function match_post( $data ) { $matched = array(); $matched = apply_filters( "oik_clone_match_post", $matched, $data ); //$this->vienna(); return( $matched ); }View on GitHub