You appear to be a bot. Output may be restricted
Description
Utility method that resets permalinks and flushes rewrites.
Usage
WP_UnitTestCase::set_permalink_structure( $structure );
Parameters
- $structure
- ( string ) optional – Optional. Permalink structure to set. Default empty.
Returns
voidSource
File name: oik-batch/tests/testcase.phpLines:
1 to 7 of 7
public function set_permalink_structure( $structure = '' ) { global $wp_rewrite; $wp_rewrite->init(); $wp_rewrite->set_permalink_structure( $structure ); $wp_rewrite->flush_rules(); }View on GitHub