We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 534d805 commit a9b9d20Copy full SHA for a9b9d20
posts-bridge/includes/class-posts-bridge.php
@@ -171,7 +171,9 @@ public static function activate() {
171
}
172
173
Remote_Featured_Media::setup_default_thumbnail();
174
- Posts_Synchronizer::schedule();
+
175
+ $setting_data = get_option( 'posts-bridge_general', array() ) ?: array();
176
+ Posts_Synchronizer::schedule( $setting_data );
177
178
$version = get_option( self::DB_VERSION );
179
if ( false === $version ) {
0 commit comments