This file contains 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 | |
/** | |
* Plugin Name: RB Tabify Settings Sections | |
* Plugin URI: https://blogs.recycleb.in/2024/07/wordpress-plugin-theme-settings-screen-turn-sections-into-tabs/ | |
* Description: Turn plugin/theme settings screen sections into tabs. | |
* Version: 1.0.0 | |
* Author: ckchaudhary | |
* Author URI: https://www.recycleb.in/u/chandan/ | |
* Licence: GPLv2 | |
* |
This file contains 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 | |
// Send errors like this: | |
$update_status = $widget_obj->update( $new_data ); | |
if ( ! $update_status['status'] ) { | |
// validation erorrs! | |
return rest_send_error( $update_status['message'] ); | |
} | |
// Or, like this: |
OlderNewer