Warning: This method has been deprecated. Use get_setting instead.
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_Model_Popup::get_display( string|null $key = null )
Returns all or single display settings.
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
Parameters Parameters
- $key
-
(Optional)
Default value: null
Return Return
(mixed)
Source Source
File: classes/Model/Popup.php
public function get_display( $key = null ) { $display = $this->_dep_get_settings_group( 'display', $key ); foreach ( array( 'responsive_min_width', 'responsive_max_width', 'custom_width', 'custom_height', ) as $key => $value ) { $temp = isset( $display[ $key ] ) ? $display[ $key ] : false; if ( $temp && is_string( $temp ) ) { $display[ $key ] = preg_replace( '/\D/', '', $temp ); $display[ $key . '_unit' ] = str_replace( $display[ $key ], '', $temp ); } } return $display; }
Expand full source code Collapse full source code View on Trac
Changelog Changelog
Version | Description |
---|---|
1.7.0 | Introduced. |