Warning: This function has been deprecated.
Warning: Array to string conversion in /mnt/data/home/502433.cloudwaysapps.com/rhbymdevka/public_html/wp-content/themes/wporg-developer/inc/template-tags.php on line 808
Warning: foreach() argument must be of type array|object, string given in /mnt/data/home/502433.cloudwaysapps.com/rhbymdevka/public_html/wp-content/themes/wporg-developer/inc/template-tags.php on line 813
Warning: Array to string conversion in /mnt/data/home/502433.cloudwaysapps.com/rhbymdevka/public_html/wp-content/themes/wporg-developer/inc/template-tags.php on line 808
Warning: foreach() argument must be of type array|object, string given in /mnt/data/home/502433.cloudwaysapps.com/rhbymdevka/public_html/wp-content/themes/wporg-developer/inc/template-tags.php on line 813
Warning: Array to string conversion in /mnt/data/home/502433.cloudwaysapps.com/rhbymdevka/public_html/wp-content/themes/wporg-developer/inc/template-tags.php on line 808
Warning: foreach() argument must be of type array|object, string given in /mnt/data/home/502433.cloudwaysapps.com/rhbymdevka/public_html/wp-content/themes/wporg-developer/inc/template-tags.php on line 813
Warning: Array to string conversion in /mnt/data/home/502433.cloudwaysapps.com/rhbymdevka/public_html/wp-content/themes/wporg-developer/inc/template-tags.php on line 808
Warning: foreach() argument must be of type array|object, string given in /mnt/data/home/502433.cloudwaysapps.com/rhbymdevka/public_html/wp-content/themes/wporg-developer/inc/template-tags.php on line 813
Warning: Array to string conversion in /mnt/data/home/502433.cloudwaysapps.com/rhbymdevka/public_html/wp-content/themes/wporg-developer/inc/template-tags.php on line 808
pum_get_theme_v1_meta( $group, null $popup_theme_id = null, null $key = null, null $default = null )
Fetches theme meta group data from v1 data format.
Description Description
Warning: Array to string conversion in /mnt/data/home/502433.cloudwaysapps.com/rhbymdevka/public_html/wp-content/themes/wporg-developer/inc/template-tags.php on line 808
Warning: foreach() argument must be of type array|object, string given in /mnt/data/home/502433.cloudwaysapps.com/rhbymdevka/public_html/wp-content/themes/wporg-developer/inc/template-tags.php on line 813
Warning: Array to string conversion in /mnt/data/home/502433.cloudwaysapps.com/rhbymdevka/public_html/wp-content/themes/wporg-developer/inc/template-tags.php on line 808
Warning: foreach() argument must be of type array|object, string given in /mnt/data/home/502433.cloudwaysapps.com/rhbymdevka/public_html/wp-content/themes/wporg-developer/inc/template-tags.php on line 813
Warning: Array to string conversion in /mnt/data/home/502433.cloudwaysapps.com/rhbymdevka/public_html/wp-content/themes/wporg-developer/inc/template-tags.php on line 808
Warning: foreach() argument must be of type array|object, string given in /mnt/data/home/502433.cloudwaysapps.com/rhbymdevka/public_html/wp-content/themes/wporg-developer/inc/template-tags.php on line 813
Warning: Array to string conversion in /mnt/data/home/502433.cloudwaysapps.com/rhbymdevka/public_html/wp-content/themes/wporg-developer/inc/template-tags.php on line 808
Warning: foreach() argument must be of type array|object, string given in /mnt/data/home/502433.cloudwaysapps.com/rhbymdevka/public_html/wp-content/themes/wporg-developer/inc/template-tags.php on line 813
Warning: Array to string conversion in /mnt/data/home/502433.cloudwaysapps.com/rhbymdevka/public_html/wp-content/themes/wporg-developer/inc/template-tags.php on line 808
Parameters Parameters
- $group
-
(Required)
- $popup_theme_id
-
(Optional)
Default value: null
- $key
-
(Optional)
Default value: null
- $default
-
(Optional)
Default value: null
Return Return
(mixed)
Source Source
File: includes/functions/themes/deprecated.php
function pum_get_theme_v1_meta( $group, $popup_theme_id = null, $key = null, $default = null ) { if ( ! $popup_theme_id ) { $popup_theme_id = get_the_ID(); } $post_meta = get_post_custom( $popup_theme_id ); if ( ! is_array( $post_meta ) ) { $post_meta = array(); } $default_check_key = 'popup_theme_defaults_set'; if ( ! in_array( $group, array( 'overlay', 'close', 'display', 'targeting_condition' ) ) ) { $default_check_key = "popup_{$group}_defaults_set"; } $group_values = array_key_exists( $default_check_key, $post_meta ) ? array() : apply_filters( "popmake_popup_theme_{$group}_defaults", array() ); foreach ( $post_meta as $meta_key => $value ) { if ( strpos( $meta_key, "popup_theme_{$group}_" ) !== false ) { $new_key = str_replace( "popup_theme_{$group}_", '', $meta_key ); if ( count( $value ) == 1 ) { $group_values[ $new_key ] = $value[0]; } else { $group_values[ $new_key ] = $value; } } } if ( $key ) { $key = str_replace( '.', '_', $key ); if ( ! isset( $group_values[ $key ] ) ) { $value = $default; } else { $value = $group_values[ $key ]; } return apply_filters( "popmake_get_popup_theme_{$group}_$key", $value, $popup_theme_id ); } else { return apply_filters( "popmake_get_popup_theme_{$group}", $group_values, $popup_theme_id ); } }
Expand full source code Collapse full source code View on Trac
Changelog Changelog
Version | Description |
---|---|
1.1.0 | This function has been deprecated. |
1.8.0 | Introduced. |