This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
#Visual Composer field dependency examples: | |
array( | |
"type" => "attach_image", | |
"holder" => "div", | |
"param_name" => "section_title_image", | |
"dependency" => [ | |
"element" => "title_type", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Updates .htaccess, regenerates WP Rocket config file. | |
*/ | |
function flush_wp_rocket() { | |
if ( ! function_exists( 'rocket_generate_config_file' ) ) { | |
return false; | |
} | |
// Regenerate WP Rocket config file. |
OlderNewer