Warning: Array to string conversion in /home/customer/www/docs.automatorplugin.com/public_html/wp-content/themes/wporg-developer/inc/template-tags.php on line 825
Automator_Helpers_Recipe::less_or_greater_than()
Return Return
(mixed)
Source Source
File: src/core/lib/helpers/class-automator-recipe-helpers.php
public function less_or_greater_than() { $option = array( 'option_code' => 'NUMBERCOND', /* translators: Noun */ 'label' => esc_attr__( 'Condition', 'uncanny-automator' ), 'input_type' => 'select', 'required' => true, 'options' => array( '=' => esc_attr__( 'equal to', 'uncanny-automator' ), '!=' => esc_attr__( 'not equal to', 'uncanny-automator' ), '<' => esc_attr__( 'less than', 'uncanny-automator' ), '>' => esc_attr__( 'greater than', 'uncanny-automator' ), '>=' => esc_attr__( 'greater or equal to', 'uncanny-automator' ), '<=' => esc_attr__( 'less or equal to', 'uncanny-automator' ), ), ); $option = apply_filters_deprecated( 'uap_option_less_or_greater_than', array( $option ), '3.0', 'automator_option_less_or_greater_than' ); return apply_filters( 'automator_option_less_or_greater_than', $option ); }
Expand full source code Collapse full source code View on Github