Changeset 60901
- Timestamp:
- 10/05/2025 07:04:21 PM (6 days ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/shortcodes.php
r58197 r60901 183 183 */ 184 184 function get_shortcode_tags_in_content( $content ) { 185 if ( false === strpos( $content, '[' ) ) {185 if ( ! str_contains( $content, '[' ) ) { 186 186 return array(); 187 187 }
Note: See TracChangeset for help on using the changeset viewer.