Initial Commit

This commit is contained in:
David Stone
2024-11-30 18:24:12 -07:00
commit e8f7955c1c
5432 changed files with 1397750 additions and 0 deletions

22
inc/functions/element.php Normal file
View File

@ -0,0 +1,22 @@
<?php
/**
* Element Functions
*
* @package WP_Ultimo\Functions
* @since 2.0.5
*/
// Exit if accessed directly
defined('ABSPATH') || exit;
/**
* Triggers the setup_preview hooks for all registered elements.
*
* @since 2.0.5
* @return void
*/
function wu_element_setup_preview() {
!did_action('wu_element_preview') && do_action('wu_element_preview');
} // end wu_element_setup_preview;