Changeset 7396 for trunk/src/includes/common/functions.php
- Timestamp:
- 01/08/2026 01:45:19 AM (3 months ago)
- File:
-
- 1 edited
-
trunk/src/includes/common/functions.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/includes/common/functions.php
r7391 r7396 155 155 * @since 2.7.0 bbPress (r7388) 156 156 * 157 * @param bool $us eOptional. Default false. If using.157 * @param bool $using Optional. Default false. If using. 158 158 * @param string $post_type Optional. Default empty string. The post type to check. 159 159 * 160 160 * @return bool 161 161 */ 162 function bbp_filter_use_block_editor_for_post_type( $us e= false, $post_type = '' ) {162 function bbp_filter_use_block_editor_for_post_type( $using = false, $post_type = '' ) { 163 163 164 164 // Get bbPress post types … … 170 170 171 171 // Filter & return 172 return (bool) apply_filters( 'bbp_filter_use_block_editor_for_post_type', $retval, $is_post_type, $us e, $post_type );172 return (bool) apply_filters( 'bbp_filter_use_block_editor_for_post_type', $retval, $is_post_type, $using, $post_type ); 173 173 } 174 174
Note: See TracChangeset
for help on using the changeset viewer.