We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
It is possible to declare synchronizations from a plugin or the theme with the method: BEA_CSF_Synchronizations::register
BEA_CSF_Synchronizations::register
Example
add_action( 'plugins_loaded', 'init_bea_content_sync_fusion_register_medias', 11 ); function init_bea_content_sync_fusion_register_medias() { BEA_CSF_Synchronizations::register( array( 'active' => true, 'label' => 'Medias on network', 'post_type' => 'attachment', 'mode' => 'auto', // manual OR auto 'status' => 'publish', // publish OR pending 'emitters' => array( 'all' ), 'receivers' => array( 'all' ) ) ); }