diff --git a/admin/settings.php b/admin/settings.php index 36e1094..e048801 100644 --- a/admin/settings.php +++ b/admin/settings.php @@ -836,11 +836,11 @@ function wpa_superstar_workflow_section() { // Register Workflow settings register_setting('wpa_superstar_workflow', 'wpa_superstar_workflow_options'); - // Add Workflow section + // Add Workflow section without title or description add_settings_section( 'wpa_superstar_workflow_section', - '', // Keep section title empty - 'wpa_superstar_workflow_section_callback', + '', + '__return_empty_string', 'wpa_superstar_workflow' ); @@ -854,22 +854,20 @@ function wpa_superstar_workflow_section() { ); } -function wpa_superstar_workflow_section_callback() { - echo '

Quality of life features to save time and from inconsistancies with your content management.

'; -} - -// Add Auto Upload Images setting function wpa_superstar_auto_upload_images_callback() { $options = get_option('wpa_superstar_workflow_options', array( 'auto_upload_images' => false )); ?>
-