Changeset 59244 for trunk/src/wp-content/themes/twentysixteen/functions.php
- Timestamp:
- 10/17/2024 12:35:01 AM (3 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-content/themes/twentysixteen/functions.php
r58718 r59244 529 529 require get_template_directory() . '/inc/template-tags.php'; 530 530 531 /** 532 * Block Patterns. 533 */ 534 require get_template_directory() . '/inc/block-patterns.php'; 531 532 /** 533 * Register block patterns and pattern categories. 534 * 535 * @since Twenty Sixteen 3.4 536 */ 537 function twentysixteen_register_block_patterns() { 538 require get_template_directory() . '/inc/block-patterns.php'; 539 } 540 541 add_action( 'init', 'twentysixteen_register_block_patterns' ); 535 542 536 543 /**
Note: See TracChangeset
for help on using the changeset viewer.