You appear to be a bot. Output may be restricted
Description
Implement "oik_clone_match_filters" for oik-clone-msHere we define the filter that we'll use when performing matches for MultiSite
Usage
oik_clone_match_filters_ms();
Parameters
Returns
voidSource
File name: oik-clone/admin/oik-clone-ms.phpLines:
1 to 6 of 6
function oik_clone_match_filters_ms() { add_filter( "oik_clone_match_post", "oik_clone_match_post_by_ID", 10, 2 ); add_filter( "oik_clone_match_post", "oik_clone_match_post_by_GUID", 10, 2 ); add_filter( "oik_clone_match_post", "oik_clone_match_post_by_slug", 10, 2 ); add_filter( "oik_clone_match_post", "oik_clone_match_post_by_title", 10, 2 ); }View on GitHub