Changeset 61272
- Timestamp:
- 11/19/2025 10:22:05 PM (2 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-content/themes/twentytwentyfive/functions.php
r60935 r61272 10 10 */ 11 11 12 // Adds theme support for post formats.13 12 if ( ! function_exists( 'twentytwentyfive_post_format_setup' ) ) : 14 13 /** … … 25 24 add_action( 'after_setup_theme', 'twentytwentyfive_post_format_setup' ); 26 25 27 // Enqueues editor-style.css in the editors.28 26 if ( ! function_exists( 'twentytwentyfive_editor_style' ) ) : 29 27 /** … … 40 38 add_action( 'after_setup_theme', 'twentytwentyfive_editor_style' ); 41 39 42 // Enqueues the theme stylesheet on the front.43 40 if ( ! function_exists( 'twentytwentyfive_enqueue_styles' ) ) : 44 41 /** … … 68 65 add_action( 'wp_enqueue_scripts', 'twentytwentyfive_enqueue_styles' ); 69 66 70 // Registers custom block styles.71 67 if ( ! function_exists( 'twentytwentyfive_block_styles' ) ) : 72 68 /** … … 97 93 add_action( 'init', 'twentytwentyfive_block_styles' ); 98 94 99 // Registers pattern categories.100 95 if ( ! function_exists( 'twentytwentyfive_pattern_categories' ) ) : 101 96 /** … … 127 122 add_action( 'init', 'twentytwentyfive_pattern_categories' ); 128 123 129 // Registers block binding sources.130 124 if ( ! function_exists( 'twentytwentyfive_register_block_bindings' ) ) : 131 125 /** … … 148 142 add_action( 'init', 'twentytwentyfive_register_block_bindings' ); 149 143 150 // Registers block binding callback function for the post format name.151 144 if ( ! function_exists( 'twentytwentyfive_format_binding' ) ) : 152 145 /**
Note: See TracChangeset
for help on using the changeset viewer.