Changeset 3309122
- Timestamp:
- 06/10/2025 10:39:36 AM (10 months ago)
- Location:
- post-title-required/trunk
- Files:
-
- 2 edited
-
include/class-ptreq-check-settings.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
post-title-required/trunk/include/class-ptreq-check-settings.php
r3308303 r3309122 98 98 wp_die( 99 99 sprintf( 100 'The title is too long! It must be at maximum %d characters long. Please correct it.',100 esc_html('The title is too long! It must be at maximum %d characters long. Please correct it.'), 101 101 esc_attr($character_limit) 102 102 ), 103 'Title Too long'103 esc_html('Title Too Long') 104 104 ); 105 105 } 106 106 if (!$title_length) { 107 wp_die( __('Title is required.'));107 wp_die(esc_html('Title is required.')); 108 108 } 109 109 } 110 110 return $data; 111 111 } catch (\Throwable $th) { 112 error_log($th->getMessage()); 112 // error_log($th->getMessage()); 113 wp_die(esc_html('something went wrong in post title required.')); 113 114 } 114 115 } -
post-title-required/trunk/readme.txt
r3308303 r3309122 2 2 3 3 Contributors: santoshtmp7, younginnovations 4 Tested up to: 6.8 .14 Tested up to: 6.8 5 5 Stable tag: 1.0.1 6 6 License: GPLv2 or later
Note: See TracChangeset
for help on using the changeset viewer.