Last active
September 28, 2020 15:00
-
-
Save kaskad88/eae2edbe37cb36e151b0d7a5a28c6aa9 to your computer and use it in GitHub Desktop.
Update elementor control
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_action( 'elementor/element/jet-engine-maps-listing/section_general/before_section_end', '__your_prefix_update_posts_num_control', 10, 2 ); | |
function __your_prefix_update_posts_num_control( $widget = null, $args = array() ) { | |
$widget->update_control( | |
'posts_num', | |
array( | |
'max' => 1000, | |
) | |
); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_action( 'elementor/element/jet-listing-grid/section_general/before_section_end', '__your_prefix_update_posts_num_control', 10, 2 ); | |
function __your_prefix_update_posts_num_control( $widget = null, $args = array() ) { | |
$widget->update_control( | |
'posts_num', | |
array( | |
'max' => 1000, | |
) | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment