WP_Screen::render_screen_meta()
- Since
- 3.3.0
- Source
wp-admin/includes/class-wp-screen.php:790
Description
This will trigger the deprecated filters for backward compatibility.
Compatibility
- WordPress
- since 3.3.0
- PHP
- 7.4–8.6-dev
- 6.7.7
- 6.8.8
- 6.9.7
- 7.0.4
- 7.1.0
Present in every tracked release (6.7.7 to 7.1.0), and compiles on PHP 7.4 through 8.6-dev.
Performance profile
How much work a call to WP_Screen::render_screen_meta() does, and what it touches: the algorithmic scaling, the Zend instruction count per call across PHP versions, the hooks it hands control to, and the core code that calls it. Measured from the compiled opcodes, not a stopwatch, so every number is identical on any machine running the same PHP version, and every function in core is ranked by cost.
- Cost class
- Light
- Scaling
- Scales with input
- Instructions
- 92–153
- Plugin surface
- 4 hooks
- Called by
- 0
Touches nothing outside its own arguments.
The body loops, so the work grows with how much data it finds.
Executed per call on PHP 8.5, depending on the branch taken. The body compiles to 237.
Third-party callbacks on 'contextual_help_list', 'contextual_help', 'default_contextual_help' run inside this call, and their cost is not bounded by anything here.
Nothing in core calls this; the cost is only what you spend yourself.
What it touches
- hookthird-party callbacks
apply_filters_deprecated()called directly
Further down the call graph this can also reach option, query, cache, serialize and transient. Those are the worst case, several calls deep and usually down an error path, not what a normal call pays.
What one call costs · 288 distinct outcomes
One number would be a lie: the work depends on which branch runs. These are every distinct cost WP_Screen::render_screen_meta() can have, taken from its control-flow graph on PHP 8.5.
| When | Instructions | Calls it makes |
|---|---|---|
!isset($value) && !empty($old_help) && !->get_option() && !->show_screen_options() && !->get_help_tabs() | 92–101 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options() |
!isset($value) && !empty($old_help) && !->get_option() && !->get_help_tabs() | 94–103 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options() |
!isset($value) && !empty($old_help) && !->get_option() && !->show_screen_options() | 97–106 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && !->get_option() | 99–108 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && !->get_option() && !->get_help_tabs() | 100–109 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && !->get_option() && !->show_screen_options() | 101–107 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options() |
!isset($value) && !empty($old_help) && ->get_option() && !->show_screen_options() && !->get_help_tabs() | 102–111 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), get_user_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options() |
!isset($value) && !empty($old_help) && !empty($columns) && isset($columns) && !->get_option() && !->show_screen_options() && !->get_help_tabs() | 102–108 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options() |
!isset($value) && !empty($old_help) && ->get_help_tabs() && !->get_option() && !->show_screen_options() | 102–111 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && !->get_option() | 102–111 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), _e(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && !->get_option() && !->get_help_tabs() | 102–111 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && !->get_option() | 103–109 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options() |
276 further outcomes, up to 153 instructions
!isset($value) && !empty($old_help) && ->get_option() && !->get_help_tabs() | 104–113 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), get_user_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options() |
!isset($value) && !empty($old_help) && !empty($columns) && isset($columns) && !->get_option() && !->get_help_tabs() | 104–110 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options() |
!isset($value) && !empty($old_help) && ->get_help_tabs() && !->get_option() | 104–113 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && !->get_option() && ->show_screen_options() | 104–113 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), _e(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && !->get_option() | 105–114 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && !->get_option() && !->get_help_tabs() | 105–114 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), _e(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && !->get_option() && !->show_screen_options() | 106–112 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && ->get_option() && !->show_screen_options() | 107–116 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), get_user_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && !->show_screen_options() && !->get_help_tabs() | 107–116 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), get_user_option(), ->get_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options() |
!isset($value) && !empty($old_help) && !empty($columns) && isset($columns) && !->get_option() && !->show_screen_options() | 107–113 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && ->get_help_tabs() && !->get_option() | 107–116 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), _e(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && !->get_option() | 107–116 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && !->get_option() && ->show_screen_options() && !->get_help_tabs() | 107–116 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), _e(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && !->get_option() | 108–114 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && ->get_option() | 109–118 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), get_user_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && !->get_help_tabs() | 109–118 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), get_user_option(), ->get_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options() |
!isset($value) && !empty($old_help) && !empty($columns) && isset($columns) && !->get_option() | 109–115 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && ->get_help_tabs() && !->get_option() && ->show_screen_options() | 109–118 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), _e(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && !->get_option() | 109–115 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && ->get_option() && !->get_help_tabs() | 110–119 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), get_user_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && !empty($columns) && isset($columns) && !->get_option() && !->get_help_tabs() | 110–116 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && !->get_option() | 110–119 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), _e(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && ->get_option() && !->show_screen_options() | 111–117 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), get_user_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options() |
!isset($value) && !empty($old_help) && !empty($columns) && isset($columns) && !->get_option() && !->show_screen_options() | 111–112 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options() |
!isset($value) && !empty($old_help) && ->get_help_tabs() && !->get_option() && !->show_screen_options() | 111–117 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && !->get_option() | 111–117 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), _e(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && !->get_option() | 111–117 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && !empty($columns) && isset($columns) && ->get_option() && !->show_screen_options() && !->get_help_tabs() | 112–118 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), get_user_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options() |
!isset($value) && !empty($old_help) && ->get_help_tabs() && ->get_option() && !->show_screen_options() | 112–121 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), get_user_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && ->get_option() | 112–121 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), get_user_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), _e(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && !->show_screen_options() | 112–121 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), get_user_option(), ->get_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && ->get_help_tabs() && !empty($columns) && isset($columns) && !->get_option() && !->show_screen_options() | 112–118 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && !empty($columns) && isset($columns) && !->get_option() | 112–118 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), _e(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && ->get_option() && !->get_help_tabs() | 112–121 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), get_user_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && !empty($columns) && isset($columns) && !->get_option() && !->get_help_tabs() | 112–118 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && !->get_option() && ->show_screen_options() | 112–121 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), _e(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && ->get_option() && !->show_screen_options() && !->get_help_tabs() | 113–122 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), get_user_option(), ->get_option(), ->get_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options() |
!isset($value) && !empty($old_help) && ->get_option() | 113–119 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), get_user_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options() |
!isset($value) && !empty($old_help) && !empty($columns) && isset($columns) && !->get_option() | 113–114 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options() |
!isset($value) && !empty($old_help) && ->get_help_tabs() && !->get_option() | 113–119 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && !->get_option() && ->show_screen_options() | 113–119 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), _e(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && !empty($columns) && isset($columns) && ->get_option() && !->get_help_tabs() | 114–120 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), get_user_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options() |
!isset($value) && !empty($old_help) && ->get_help_tabs() && ->get_option() | 114–123 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), get_user_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && ->get_option() && ->show_screen_options() | 114–123 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), get_user_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), _e(), ->get_help_tabs() |
!isset($value) && !empty($old_help) | 114–123 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), get_user_option(), ->get_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && ->get_help_tabs() && !empty($columns) && isset($columns) && !->get_option() | 114–120 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && !empty($columns) && isset($columns) && !->get_option() && ->show_screen_options() | 114–120 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), _e(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && !->get_option() | 114–120 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && !->get_option() | 114–120 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), _e(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && ->get_option() | 115–124 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), get_user_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && ->get_option() && !->get_help_tabs() | 115–124 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), get_user_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), _e(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && !->get_help_tabs() | 115–124 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), get_user_option(), ->get_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && ->get_option() && !->get_help_tabs() | 115–124 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), get_user_option(), ->get_option(), ->get_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options() |
!isset($value) && !empty($old_help) && !empty($columns) && isset($columns) && !->get_option() | 115–121 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && !empty($columns) && isset($columns) && !->get_option() && !->get_help_tabs() | 115–121 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), _e(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && ->get_option() && !->show_screen_options() | 116–122 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), get_user_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && !->show_screen_options() | 116–120 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), get_user_option(), ->get_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options() |
!isset($value) && !empty($old_help) && !empty($columns) && isset($columns) && !->get_option() && !->show_screen_options() | 116–117 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && ->get_help_tabs() && !->get_option() | 116–122 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), _e(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && !->get_option() | 116–122 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && !->get_option() && ->show_screen_options() | 116–122 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), _e(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && !empty($columns) && isset($columns) && ->get_option() && !->show_screen_options() | 117–123 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), get_user_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && !empty($columns) && isset($columns) && !->show_screen_options() && !->get_help_tabs() | 117–123 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), get_user_option(), ->get_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options() |
!isset($value) && !empty($old_help) && ->get_help_tabs() && ->get_option() | 117–126 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), get_user_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), _e(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && ->get_help_tabs() && !->show_screen_options() | 117–126 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), get_user_option(), ->get_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) | 117–126 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), get_user_option(), ->get_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), _e(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && ->get_help_tabs() && !empty($columns) && isset($columns) && !->get_option() | 117–123 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), _e(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && ->get_option() | 117–126 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), get_user_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && ->get_option() && ->show_screen_options() && !->get_help_tabs() | 117–126 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), get_user_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), _e(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && !->get_help_tabs() | 117–126 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), get_user_option(), ->get_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && !empty($columns) && isset($columns) && !->get_option() | 117–123 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && !empty($columns) && isset($columns) && !->get_option() && ->show_screen_options() && !->get_help_tabs() | 117–123 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), _e(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && ->get_option() && !->show_screen_options() | 118–127 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), get_user_option(), ->get_option(), ->get_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && ->get_option() | 118–124 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), get_user_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->get_help_tabs() |
!isset($value) && !empty($old_help) | 118–122 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), get_user_option(), ->get_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options() |
!isset($value) && !empty($old_help) && !empty($columns) && isset($columns) && !->get_option() | 118–119 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && ->get_help_tabs() && !->get_option() && ->show_screen_options() | 118–124 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), _e(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && !empty($columns) && isset($columns) && ->get_option() | 119–125 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), get_user_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && !empty($columns) && isset($columns) && !->get_help_tabs() | 119–125 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), get_user_option(), ->get_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options() |
!isset($value) && !empty($old_help) && ->get_help_tabs() && ->get_option() && ->show_screen_options() | 119–128 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), get_user_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), _e(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && ->get_help_tabs() | 119–128 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), get_user_option(), ->get_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && ->show_screen_options() | 119–128 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), get_user_option(), ->get_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), _e(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && ->get_help_tabs() && !empty($columns) && isset($columns) && !->get_option() && ->show_screen_options() | 119–125 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), _e(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && ->get_option() | 119–125 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), get_user_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && !empty($columns) && isset($columns) && !->get_option() | 119–120 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && !->get_option() | 119–125 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), _e(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && !empty($columns) && isset($columns) && ->get_option() && !->get_help_tabs() | 120–126 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), get_user_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && ->get_option() | 120–129 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), get_user_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), _e(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) | 120–129 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), get_user_option(), ->get_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && !->get_help_tabs() | 120–129 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), get_user_option(), ->get_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), _e(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && ->get_option() | 120–129 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), get_user_option(), ->get_option(), ->get_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && !empty($columns) && isset($columns) && !->get_option() | 120–126 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), _e(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && !empty($columns) && isset($columns) && ->get_option() && !->show_screen_options() | 121–122 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), get_user_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options() |
!isset($value) && !empty($old_help) && ->get_option() && !->get_help_tabs() | 121–130 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), get_user_option(), ->get_option(), ->get_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && ->get_help_tabs() && ->get_option() && !->show_screen_options() | 121–127 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), get_user_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && ->get_option() | 121–127 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), get_user_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), _e(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && !->show_screen_options() | 121–127 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), get_user_option(), ->get_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && ->get_help_tabs() && !empty($columns) && isset($columns) && !->get_option() && !->show_screen_options() | 121–122 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && !empty($columns) && isset($columns) && !->get_option() | 121–122 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), _e(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && ->get_option() | 121–127 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), get_user_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && !empty($columns) && isset($columns) && !->get_option() | 121–122 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && !->get_option() && ->show_screen_options() | 121–127 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), _e(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && ->get_help_tabs() && !empty($columns) && isset($columns) && ->get_option() && !->show_screen_options() | 122–128 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), get_user_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && !empty($columns) && isset($columns) && ->get_option() | 122–128 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), get_user_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), _e(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && !empty($columns) && isset($columns) && !->show_screen_options() | 122–128 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), get_user_option(), ->get_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && ->get_help_tabs() | 122–131 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), get_user_option(), ->get_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), _e(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && !empty($columns) && isset($columns) && ->get_option() && !->get_help_tabs() | 122–128 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), get_user_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && ->get_option() && !->show_screen_options() | 122–126 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), get_user_option(), ->get_option(), ->get_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options() |
!isset($value) && !empty($old_help) && ->get_option() && ->show_screen_options() | 122–131 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), get_user_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), _e(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) | 122–131 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), get_user_option(), ->get_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && ->show_screen_options() && !->get_help_tabs() | 122–131 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), get_user_option(), ->get_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), _e(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && !empty($columns) && isset($columns) && !->get_option() && ->show_screen_options() | 122–128 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), _e(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && !empty($columns) && isset($columns) && ->get_option() && !->show_screen_options() && !->get_help_tabs() | 123–129 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), get_user_option(), ->get_option(), ->get_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options() |
!isset($value) && !empty($old_help) && ->get_help_tabs() && ->get_option() && !->show_screen_options() | 123–132 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), get_user_option(), ->get_option(), ->get_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && ->get_option() | 123–132 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), get_user_option(), ->get_option(), ->get_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), _e(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && !empty($columns) && isset($columns) && ->get_option() | 123–124 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), get_user_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options() |
!isset($value) && !empty($old_help) && ->get_option() && !->get_help_tabs() | 123–132 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), get_user_option(), ->get_option(), ->get_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && ->get_help_tabs() && ->get_option() | 123–129 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), get_user_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && ->get_option() && ->show_screen_options() | 123–129 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), get_user_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), _e(), ->get_help_tabs() |
!isset($value) && !empty($old_help) | 123–127 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), get_user_option(), ->get_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && ->get_help_tabs() && !empty($columns) && isset($columns) && !->get_option() | 123–124 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && !empty($columns) && isset($columns) && !->get_option() && ->show_screen_options() | 123–124 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), _e(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && ->get_help_tabs() && !empty($columns) && isset($columns) && ->get_option() | 124–130 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), get_user_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && !empty($columns) && isset($columns) && ->get_option() && ->show_screen_options() | 124–130 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), get_user_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), _e(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && !empty($columns) && isset($columns) | 124–130 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), get_user_option(), ->get_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && ->get_help_tabs() && ->show_screen_options() | 124–133 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), get_user_option(), ->get_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), _e(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && ->get_option() | 124–130 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), get_user_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && ->get_option() | 124–130 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), get_user_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), _e(), ->get_help_tabs() |
!isset($value) && !empty($old_help) | 124–128 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), get_user_option(), ->get_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && ->get_option() | 124–128 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), get_user_option(), ->get_option(), ->get_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options() |
!isset($value) && !empty($old_help) && !empty($columns) && isset($columns) && !->get_option() | 124–125 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && !empty($columns) && isset($columns) && !->get_option() | 124–125 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), _e(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && !empty($columns) && isset($columns) && ->get_option() | 125–131 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), get_user_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && !empty($columns) && isset($columns) && ->get_option() && !->get_help_tabs() | 125–131 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), get_user_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), _e(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && !empty($columns) && isset($columns) && !->get_help_tabs() | 125–131 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), get_user_option(), ->get_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && !empty($columns) && isset($columns) && ->get_option() && !->get_help_tabs() | 125–131 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), get_user_option(), ->get_option(), ->get_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options() |
!isset($value) && !empty($old_help) | 125–134 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), get_user_option(), ->get_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), _e(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && ->get_help_tabs() && ->get_option() | 125–134 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), get_user_option(), ->get_option(), ->get_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && ->get_option() && ->show_screen_options() | 125–134 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), get_user_option(), ->get_option(), ->get_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), _e(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && !empty($columns) && isset($columns) && ->get_option() && !->show_screen_options() | 126–127 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), get_user_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && !empty($columns) && isset($columns) && !->show_screen_options() | 126–127 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), get_user_option(), ->get_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options() |
!isset($value) && !empty($old_help) && ->get_option() | 126–135 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), get_user_option(), ->get_option(), ->get_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && ->get_option() && !->get_help_tabs() | 126–135 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), get_user_option(), ->get_option(), ->get_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), _e(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && ->get_help_tabs() && ->get_option() | 126–132 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), get_user_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), _e(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && ->get_help_tabs() && !->show_screen_options() | 126–132 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), get_user_option(), ->get_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) | 126–132 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), get_user_option(), ->get_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), _e(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && ->get_help_tabs() && !empty($columns) && isset($columns) && !->get_option() | 126–127 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), _e(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && ->get_option() | 126–132 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), get_user_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && ->get_option() && ->show_screen_options() | 126–132 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), get_user_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), _e(), ->get_help_tabs() |
!isset($value) && !empty($old_help) | 126–130 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), get_user_option(), ->get_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && !empty($columns) && isset($columns) && !->get_option() | 126–127 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && !empty($columns) && isset($columns) && !->get_option() && ->show_screen_options() | 126–127 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), _e(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && ->get_help_tabs() && !empty($columns) && isset($columns) && ->get_option() | 127–133 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), get_user_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), _e(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && ->get_help_tabs() && !empty($columns) && isset($columns) && !->show_screen_options() | 127–133 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), get_user_option(), ->get_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && !empty($columns) && isset($columns) | 127–133 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), get_user_option(), ->get_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), _e(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && !empty($columns) && isset($columns) && ->get_option() | 127–133 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), get_user_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && !empty($columns) && isset($columns) && ->get_option() && ->show_screen_options() && !->get_help_tabs() | 127–133 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), get_user_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), _e(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && !empty($columns) && isset($columns) && !->get_help_tabs() | 127–133 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), get_user_option(), ->get_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && ->get_option() && !->show_screen_options() | 127–131 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), get_user_option(), ->get_option(), ->get_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && ->show_screen_options() | 127–136 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), get_user_option(), ->get_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), _e(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && !empty($columns) && isset($columns) && ->get_option() && !->show_screen_options() | 128–134 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), get_user_option(), ->get_option(), ->get_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && ->get_help_tabs() && ->get_option() | 128–137 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), get_user_option(), ->get_option(), ->get_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), _e(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && !empty($columns) && isset($columns) && ->get_option() | 128–129 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), get_user_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && !empty($columns) && isset($columns) | 128–129 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), get_user_option(), ->get_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options() |
!isset($value) && !empty($old_help) && ->get_option() | 128–137 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), get_user_option(), ->get_option(), ->get_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && ->get_option() && ->show_screen_options() && !->get_help_tabs() | 128–137 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), get_user_option(), ->get_option(), ->get_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), _e(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && ->get_help_tabs() && ->get_option() && ->show_screen_options() | 128–134 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), get_user_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), _e(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && ->get_help_tabs() | 128–132 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), get_user_option(), ->get_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && ->show_screen_options() | 128–132 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), get_user_option(), ->get_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), _e(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && ->get_help_tabs() && !empty($columns) && isset($columns) && !->get_option() && ->show_screen_options() | 128–129 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), _e(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && ->get_help_tabs() && !empty($columns) && isset($columns) && ->get_option() && ->show_screen_options() | 129–135 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), get_user_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), _e(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && ->get_help_tabs() && !empty($columns) && isset($columns) | 129–135 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), get_user_option(), ->get_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && !empty($columns) && isset($columns) && ->show_screen_options() | 129–135 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), get_user_option(), ->get_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), _e(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && !empty($columns) && isset($columns) && ->get_option() | 129–130 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), get_user_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && ->get_option() | 129–135 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), get_user_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), _e(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) | 129–133 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), get_user_option(), ->get_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) | 129–133 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), get_user_option(), ->get_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), _e(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && ->get_option() | 129–133 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), get_user_option(), ->get_option(), ->get_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && !empty($columns) && isset($columns) && !->get_option() | 129–130 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), _e(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && !empty($columns) && isset($columns) && ->get_option() | 130–136 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), get_user_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), _e(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && !empty($columns) && isset($columns) | 130–136 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), get_user_option(), ->get_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && !empty($columns) && isset($columns) && !->get_help_tabs() | 130–136 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), get_user_option(), ->get_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), _e(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && !empty($columns) && isset($columns) && ->get_option() | 130–136 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), get_user_option(), ->get_option(), ->get_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && ->get_help_tabs() && ->get_option() && ->show_screen_options() | 130–139 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), get_user_option(), ->get_option(), ->get_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), _e(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && ->get_option() | 130–134 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), get_user_option(), ->get_option(), ->get_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && !empty($columns) && isset($columns) && ->get_option() && !->get_help_tabs() | 131–137 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), get_user_option(), ->get_option(), ->get_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && ->get_help_tabs() && !empty($columns) && isset($columns) && ->get_option() && !->show_screen_options() | 131–132 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), get_user_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && !empty($columns) && isset($columns) && ->get_option() | 131–132 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), get_user_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), _e(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && !empty($columns) && isset($columns) && !->show_screen_options() | 131–132 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), get_user_option(), ->get_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && ->get_option() | 131–140 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), get_user_option(), ->get_option(), ->get_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), _e(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && ->get_help_tabs() | 131–137 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), get_user_option(), ->get_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), _e(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && !empty($columns) && isset($columns) && ->get_option() | 131–132 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), get_user_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && ->get_option() && ->show_screen_options() | 131–137 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), get_user_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), _e(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) | 131–135 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), get_user_option(), ->get_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && ->show_screen_options() | 131–135 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), get_user_option(), ->get_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), _e(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && !empty($columns) && isset($columns) && !->get_option() && ->show_screen_options() | 131–132 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), _e(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && ->get_help_tabs() && !empty($columns) && isset($columns) | 132–138 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), get_user_option(), ->get_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), _e(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && !empty($columns) && isset($columns) && ->get_option() && !->show_screen_options() | 132–133 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), get_user_option(), ->get_option(), ->get_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options() |
!isset($value) && !empty($old_help) && !empty($columns) && isset($columns) && ->get_option() && ->show_screen_options() | 132–138 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), get_user_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), _e(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && !empty($columns) && isset($columns) | 132–138 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), get_user_option(), ->get_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && !empty($columns) && isset($columns) && ->show_screen_options() && !->get_help_tabs() | 132–138 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), get_user_option(), ->get_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), _e(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && ->get_help_tabs() && ->get_option() && !->show_screen_options() | 132–136 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), get_user_option(), ->get_option(), ->get_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && ->get_option() | 132–136 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), get_user_option(), ->get_option(), ->get_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), _e(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && ->get_option() | 132–136 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), get_user_option(), ->get_option(), ->get_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && ->get_help_tabs() && !empty($columns) && isset($columns) && ->get_option() && !->show_screen_options() | 133–139 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), get_user_option(), ->get_option(), ->get_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && !empty($columns) && isset($columns) && ->get_option() | 133–139 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), get_user_option(), ->get_option(), ->get_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), _e(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && !empty($columns) && isset($columns) && ->get_option() && !->get_help_tabs() | 133–139 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), get_user_option(), ->get_option(), ->get_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && ->get_help_tabs() && !empty($columns) && isset($columns) && ->get_option() | 133–134 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), get_user_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && !empty($columns) && isset($columns) && ->get_option() && ->show_screen_options() | 133–134 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), get_user_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), _e(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && !empty($columns) && isset($columns) | 133–134 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), get_user_option(), ->get_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && ->get_option() && ->show_screen_options() | 133–142 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), get_user_option(), ->get_option(), ->get_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), _e(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && ->get_help_tabs() && ->show_screen_options() | 133–137 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), get_user_option(), ->get_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), _e(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && ->get_help_tabs() && !empty($columns) && isset($columns) && ->show_screen_options() | 134–140 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), get_user_option(), ->get_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), _e(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && !empty($columns) && isset($columns) && ->get_option() | 134–135 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), get_user_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && !empty($columns) && isset($columns) && ->get_option() | 134–135 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), get_user_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), _e(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && !empty($columns) && isset($columns) | 134–135 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), get_user_option(), ->get_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && !empty($columns) && isset($columns) && ->get_option() | 134–135 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), get_user_option(), ->get_option(), ->get_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options() |
!isset($value) && !empty($old_help) | 134–138 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), get_user_option(), ->get_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), _e(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && ->get_help_tabs() && ->get_option() | 134–138 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), get_user_option(), ->get_option(), ->get_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && ->get_option() && ->show_screen_options() | 134–138 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), get_user_option(), ->get_option(), ->get_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), _e(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && !empty($columns) && isset($columns) | 135–141 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), get_user_option(), ->get_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), _e(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && ->get_help_tabs() && !empty($columns) && isset($columns) && ->get_option() | 135–141 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), get_user_option(), ->get_option(), ->get_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && !empty($columns) && isset($columns) && ->get_option() && ->show_screen_options() | 135–141 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), get_user_option(), ->get_option(), ->get_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), _e(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && ->get_option() | 135–139 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), get_user_option(), ->get_option(), ->get_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && ->get_option() | 135–139 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), get_user_option(), ->get_option(), ->get_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), _e(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && !empty($columns) && isset($columns) && ->get_option() | 136–142 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), get_user_option(), ->get_option(), ->get_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && !empty($columns) && isset($columns) && ->get_option() && !->get_help_tabs() | 136–142 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), get_user_option(), ->get_option(), ->get_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), _e(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && ->get_help_tabs() && !empty($columns) && isset($columns) && ->get_option() | 136–137 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), get_user_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), _e(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && ->get_help_tabs() && !empty($columns) && isset($columns) && !->show_screen_options() | 136–137 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), get_user_option(), ->get_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && !empty($columns) && isset($columns) | 136–137 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), get_user_option(), ->get_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), _e(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && !empty($columns) && isset($columns) && ->get_option() | 136–137 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), get_user_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && !empty($columns) && isset($columns) && ->get_option() && ->show_screen_options() | 136–137 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), get_user_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), _e(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && !empty($columns) && isset($columns) | 136–137 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), get_user_option(), ->get_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && ->show_screen_options() | 136–140 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), get_user_option(), ->get_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), _e(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && !empty($columns) && isset($columns) && ->get_option() && !->show_screen_options() | 137–138 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), get_user_option(), ->get_option(), ->get_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && !empty($columns) && isset($columns) && ->show_screen_options() | 137–143 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), get_user_option(), ->get_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), _e(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && ->get_help_tabs() && ->get_option() | 137–141 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), get_user_option(), ->get_option(), ->get_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), _e(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && ->get_option() | 137–141 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), get_user_option(), ->get_option(), ->get_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && ->get_option() && ->show_screen_options() | 137–141 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), get_user_option(), ->get_option(), ->get_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), _e(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && ->get_help_tabs() && !empty($columns) && isset($columns) && ->get_option() | 138–144 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), get_user_option(), ->get_option(), ->get_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), _e(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && !empty($columns) && isset($columns) && ->get_option() | 138–144 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), get_user_option(), ->get_option(), ->get_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && !empty($columns) && isset($columns) && ->get_option() && ->show_screen_options() && !->get_help_tabs() | 138–144 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), get_user_option(), ->get_option(), ->get_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), _e(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && ->get_help_tabs() && !empty($columns) && isset($columns) && ->get_option() && ->show_screen_options() | 138–139 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), get_user_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), _e(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && ->get_help_tabs() && !empty($columns) && isset($columns) | 138–139 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), get_user_option(), ->get_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && !empty($columns) && isset($columns) && ->show_screen_options() | 138–139 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), get_user_option(), ->get_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), _e(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && !empty($columns) && isset($columns) && ->get_option() | 139–140 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), get_user_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), _e(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && !empty($columns) && isset($columns) | 139–140 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), get_user_option(), ->get_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && !empty($columns) && isset($columns) | 139–140 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), get_user_option(), ->get_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), _e(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && !empty($columns) && isset($columns) && ->get_option() | 139–140 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), get_user_option(), ->get_option(), ->get_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && ->get_help_tabs() && ->get_option() && ->show_screen_options() | 139–143 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), get_user_option(), ->get_option(), ->get_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), _e(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && ->get_help_tabs() && !empty($columns) && isset($columns) && ->get_option() && ->show_screen_options() | 140–146 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), get_user_option(), ->get_option(), ->get_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), _e(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && !empty($columns) && isset($columns) && ->get_option() | 140–141 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), get_user_option(), ->get_option(), ->get_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && ->get_option() | 140–144 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), get_user_option(), ->get_option(), ->get_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), _e(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && !empty($columns) && isset($columns) && ->get_option() | 141–147 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), get_user_option(), ->get_option(), ->get_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), _e(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && ->get_help_tabs() && !empty($columns) && isset($columns) | 141–142 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), get_user_option(), ->get_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), _e(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && !empty($columns) && isset($columns) && ->get_option() && ->show_screen_options() | 141–142 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), get_user_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), _e(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && !empty($columns) && isset($columns) | 141–142 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), get_user_option(), ->get_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && !empty($columns) && isset($columns) && ->show_screen_options() | 141–142 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), get_user_option(), ->get_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), _e(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && ->get_help_tabs() && !empty($columns) && isset($columns) && ->get_option() && !->show_screen_options() | 142–143 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), get_user_option(), ->get_option(), ->get_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && !empty($columns) && isset($columns) && ->get_option() | 142–143 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), get_user_option(), ->get_option(), ->get_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), _e(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && !empty($columns) && isset($columns) && ->get_option() | 142–143 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), get_user_option(), ->get_option(), ->get_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && ->get_option() && ->show_screen_options() | 142–146 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), ->get_option(), get_user_option(), ->get_option(), ->get_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), _e(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && !empty($columns) && isset($columns) && ->get_option() && ->show_screen_options() | 143–149 | ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), get_user_option(), ->get_option(), ->get_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), _e(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && ->get_help_tabs() && !empty($columns) && isset($columns) && ->show_screen_options() | 143–144 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), get_user_option(), ->get_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), _e(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && !empty($columns) && isset($columns) | 144–145 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), get_user_option(), ->get_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), _e(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && ->get_help_tabs() && !empty($columns) && isset($columns) && ->get_option() | 144–145 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), get_user_option(), ->get_option(), ->get_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && !empty($columns) && isset($columns) && ->get_option() && ->show_screen_options() | 144–145 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), get_user_option(), ->get_option(), ->get_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), _e(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && !empty($columns) && isset($columns) && ->get_option() | 145–146 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), get_user_option(), ->get_option(), ->get_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && !empty($columns) && isset($columns) && ->get_option() | 145–146 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), get_user_option(), ->get_option(), ->get_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), _e(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && !empty($columns) && isset($columns) && ->show_screen_options() | 146–147 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), get_user_option(), ->get_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), _e(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && ->get_help_tabs() && !empty($columns) && isset($columns) && ->get_option() | 147–148 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), get_user_option(), ->get_option(), ->get_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), _e(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && !empty($columns) && isset($columns) && ->get_option() | 147–148 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), get_user_option(), ->get_option(), ->get_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && !empty($columns) && isset($columns) && ->get_option() && ->show_screen_options() | 147–148 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), get_user_option(), ->get_option(), ->get_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), _e(), ->get_help_tabs() |
!isset($value) && !empty($old_help) && ->get_help_tabs() && !empty($columns) && isset($columns) && ->get_option() && ->show_screen_options() | 149–150 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), get_user_option(), ->get_option(), ->get_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), _e(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && !empty($columns) && isset($columns) && ->get_option() | 150–151 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), get_user_option(), ->get_option(), ->get_option(), ->show_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), _e(), ->get_help_tabs(), _e() |
!isset($value) && !empty($old_help) && !empty($columns) && isset($columns) && ->get_option() && ->show_screen_options() | 152–153 | __(), old-contextual-help(), ->get_help_sidebar(), esc_attr(), esc_attr_e(), ->get_help_tabs(), ->get_help_tabs(), apply_filters(), max(), ->get_option(), get_user_option(), ->get_option(), ->get_option(), ->show_screen_options(), ->render_screen_options(), ->get_help_tabs(), ->show_screen_options(), ->show_screen_options(), _e(), ->get_help_tabs(), _e() |
This body has more branch combinations than are worth enumerating, so the table covers the outcomes found first rather than every one that exists.
Across PHP versions
| PHP | Compiled | Executed | Branches | Notes |
|---|---|---|---|---|
| 8.6-dev | 237 | 92–153 | 22 | |
| 8.5 | 237 | 92–153 | 22 | |
| 8.4 | 237 | 92–153 | 22 | |
| 8.3 | 237 | 92–153 | 22 | |
| 8.2 | 237 | 92–153 | 22 | |
| 8.1 | 237 | 92–153 | 22 | 1 fewer instruction than PHP 7.4 |
| 7.4 | 238 | 93–154 | 22 |
An instruction is not a fixed amount of time, so a matching count is not necessarily the same speed; what it rules out is a difference in the work itself.
Hooks and filters fired · 4
4 hooks fire while WP_Screen::render_screen_meta() runs, in this order:
- do_action( contextual_help_list )filter_deprecatedline 802 (+12 into the body)
Filters the legacy contextual help list.
- do_action( contextual_help )filter_deprecatedline 822 (+32 into the body)
Filters the legacy contextual help text.
- do_action( default_contextual_help )filter_deprecatedline 841 (+51 into the body)
Filters the default legacy contextual help text.
- apply_filters( screen_layout_columns )filterline 943 (+153 into the body)
Filters the array of screen layout columns.
Uses · 16
- apply_filters_deprecated()Fires functions attached to a deprecated filter hook.
- __()Retrieves the translation of $text.
- esc_attr()Escaping for HTML attributes.
- esc_attr_e()Displays translated text that has been escaped for safe use in an attribute.
- esc_url()Checks and cleans a URL.
- esc_html()Escaping for HTML blocks.
- apply_filters()Calls the callback functions that have been added to a filter hook.
- get_user_option()Retrieves user option that can be either per Site or per Network.
- _e()Displays translated text.
- WP_Screen::get_help_tabs()Gets the help tabs registered for the screen.
- WP_Screen::add_help_tab()Adds a help tab to the contextual help for the screen.
- WP_Screen::get_help_sidebar()Gets the content from a contextual help sidebar.
Show all 16
- WP_Screen::add_option()Adds an option for the screen.
- WP_Screen::get_option()Gets the arguments for an option for the screen.
- WP_Screen::show_screen_options()
- WP_Screen::render_screen_options()Renders the screen options tab.
Source code
public function render_screen_meta() { /** * Filters the legacy contextual help list. * * @since 2.7.0 * @deprecated 3.3.0 Use {@see get_current_screen()->add_help_tab()} or * {@see get_current_screen()->remove_help_tab()} instead. * * @param array $old_compat_help Old contextual help. * @param WP_Screen $screen Current WP_Screen instance. */ self::$_old_compat_help = apply_filters_deprecated( 'contextual_help_list', array( self::$_old_compat_help, $this ), '3.3.0', 'get_current_screen()->add_help_tab(), get_current_screen()->remove_help_tab()' ); $old_help = isset( self::$_old_compat_help[ $this->id ] ) ? self::$_old_compat_help[ $this->id ] : ''; /** * Filters the legacy contextual help text. * * @since 2.7.0 * @deprecated 3.3.0 Use {@see get_current_screen()->add_help_tab()} or * {@see get_current_screen()->remove_help_tab()} instead. * * @param string $old_help Help text that appears on the screen. * @param string $screen_id Screen ID. * @param WP_Screen $screen Current WP_Screen instance. */ $old_help = apply_filters_deprecated( 'contextual_help', array( $old_help, $this->id, $this ), '3.3.0', 'get_current_screen()->add_help_tab(), get_current_screen()->remove_help_tab()' ); // Default help only if there is no old-style block of text and no new-style help tabs. if ( empty( $old_help ) && ! $this->get_help_tabs() ) { /** * Filters the default legacy contextual help text. * * @since 2.8.0 * @deprecated 3.3.0 Use {@see get_current_screen()->add_help_tab()} or * {@see get_current_screen()->remove_help_tab()} instead. * * @param string $old_help_default Default contextual help text. */ $default_help = apply_filters_deprecated( 'default_contextual_help', array( '' ), '3.3.0', 'get_current_screen()->add_help_tab(), get_current_screen()->remove_help_tab()' ); if ( $default_help ) { $old_help = '<p>' . $default_help . '</p>'; } } if ( $old_help ) { $this->add_help_tab( array( 'id' => 'old-contextual-help', 'title' => __( 'Overview' ), 'content' => $old_help, ) ); } $help_sidebar = $this->get_help_sidebar(); $help_class = 'hidden'; if ( ! $help_sidebar ) { $help_class .= ' no-sidebar'; } // Time to render!Changelog
Introduced in 3.3.0. Unchanged from 6.7.7 through 7.1.0.
Signature, return type and hooks compared across 5 parsed releases.
About this page
- Parsed data
- Generated from the wordpress-develop 6.7.7 tag, from
src/wp-admin/includes/class-wp-screen.php, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it. - Corrections
- Something wrong on this page? Report it and it gets fixed in the next regeneration.