get_post_states( WP_Post $post ): string[]
- Since
- 5.3.0
- Source
wp-admin/includes/template.php:2296
Compatibility
- WordPress
- since 5.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.
Parameters
$postWP_Post- The post to retrieve states for.
Return value
string[]- Array of post state labels keyed by their state.
Performance profile
How much work a call to get_post_states() 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
- Moderate
- Scaling
- Constant
- Instructions
- 47–127
- Plugin surface
- 1 hook
- Called by
- 4
Reads stored settings via get_option(), cached per request but not free on a cold cache.
No loop in the body: the same number of instructions runs whatever you pass in.
Executed per call on PHP 8.5, depending on the branch taken. The body compiles to 153.
Third-party callbacks on 'display_post_states' run inside this call, and their cost is not bounded by anything here.
4 places in core call this, so the cost is paid more often than your own code shows.
What it touches
- optionoption read or write
get_option()called directly - hookthird-party callbacks
apply_filters()called directly - cacheobject cache
wp_cache_get()one call below get_post_states() - serializeserialisation
maybe_unserialize()one call below get_post_states()
Further down the call graph this can also reach query 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 · 510 distinct outcomes
One number would be a lie: the work depends on which branch runs. These are every distinct cost get_post_states() can have, taken from its control-flow graph on PHP 8.5.
| When | Instructions | Calls it makes |
|---|---|---|
!isset($value) && empty($post) && !is_sticky() | 47–51 | is_sticky(), get_option(), get_option(), apply_filters() |
!isset($value) && empty($post) && !is_sticky() | 53–57 | is_sticky(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && empty($post) | 53–57 | is_sticky(), _x(), get_option(), get_option(), apply_filters() |
!isset($value) && !is_sticky() | 53–57 | _x(), is_sticky(), get_option(), get_option(), apply_filters() |
!isset($value) && empty($post) && !get_post_meta() && !is_sticky() | 54–59 | get_post_meta(), is_sticky(), get_option(), get_option(), apply_filters() |
!isset($value) && empty($post) && get_post_meta() && !is_sticky() | 58–62 | get_post_meta(), __(), is_sticky(), get_option(), get_option(), apply_filters() |
!isset($value) && empty($post) | 59–63 | is_sticky(), _x(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && empty($post) && is_sticky() | 59–63 | is_sticky(), _x(), _x(), get_option(), get_option(), apply_filters() |
!isset($value) && !is_sticky() | 59–63 | _x(), is_sticky(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) | 59–63 | _x(), is_sticky(), _x(), get_option(), get_option(), apply_filters() |
!isset($value) && empty($post) && !get_post_meta() && !is_sticky() | 60–65 | get_post_meta(), is_sticky(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && empty($post) && !get_post_meta() | 60–65 | get_post_meta(), is_sticky(), _x(), get_option(), get_option(), apply_filters() |
498 further outcomes, up to 127 instructions
!isset($value) && !get_post_meta() && !is_sticky() | 60–65 | _x(), get_post_meta(), is_sticky(), get_option(), get_option(), apply_filters() |
!isset($value) && empty($post) && !is_sticky() | 61–65 | is_sticky(), get_option(), get_option(), get_option(), get_option(), apply_filters() |
!isset($value) && empty($post) && !is_sticky() | 61–65 | get_post_meta(), _x(), is_sticky(), get_option(), get_option(), apply_filters() |
!isset($value) && !is_sticky() | 61–63 | _x(), _x(), is_sticky(), get_option(), get_option(), apply_filters() |
!isset($value) && empty($post) && get_post_meta() && !is_sticky() | 64–68 | get_post_meta(), __(), is_sticky(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && empty($post) && get_post_meta() | 64–68 | get_post_meta(), __(), is_sticky(), _x(), get_option(), get_option(), apply_filters() |
!isset($value) && get_post_meta() && !is_sticky() | 64–68 | _x(), get_post_meta(), __(), is_sticky(), get_option(), get_option(), apply_filters() |
!isset($value) && empty($post) && is_sticky() | 65–69 | is_sticky(), _x(), _x(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) | 65–69 | _x(), is_sticky(), _x(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && is_sticky() | 65–69 | _x(), is_sticky(), _x(), _x(), get_option(), get_option(), apply_filters() |
!isset($value) && empty($post) && !get_post_meta() | 66–71 | get_post_meta(), is_sticky(), _x(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && empty($post) && !get_post_meta() && is_sticky() | 66–71 | get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), apply_filters() |
!isset($value) && empty($post) && get_post_meta() && $post_status !== "pending" && !is_sticky() | 66–68 | get_post_meta(), __(), _x(), is_sticky(), get_option(), get_option(), apply_filters() |
!isset($value) && !get_post_meta() && !is_sticky() | 66–71 | _x(), get_post_meta(), is_sticky(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && !get_post_meta() | 66–71 | _x(), get_post_meta(), is_sticky(), _x(), get_option(), get_option(), apply_filters() |
!isset($value) && empty($post) && !is_sticky() | 67–71 | is_sticky(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && empty($post) && !is_sticky() | 67–71 | is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters() |
!isset($value) && empty($post) && !is_sticky() | 67–71 | is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters() |
!isset($value) && empty($post) | 67–71 | is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters() |
!isset($value) && !is_sticky() | 67–71 | _x(), is_sticky(), get_option(), get_option(), get_option(), get_option(), apply_filters() |
!isset($value) && empty($post) && !is_sticky() | 67–71 | get_post_meta(), _x(), is_sticky(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && empty($post) | 67–71 | get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), apply_filters() |
!isset($value) && !is_sticky() | 67–69 | _x(), _x(), is_sticky(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) | 67–69 | _x(), _x(), is_sticky(), _x(), get_option(), get_option(), apply_filters() |
!isset($value) && !is_sticky() | 67–71 | _x(), get_post_meta(), _x(), is_sticky(), get_option(), get_option(), apply_filters() |
!isset($value) && empty($post) && !get_post_meta() && !is_sticky() | 68–73 | get_post_meta(), is_sticky(), get_option(), get_option(), get_option(), get_option(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" && !get_post_meta() && !is_sticky() | 68–71 | _x(), _x(), get_post_meta(), is_sticky(), get_option(), get_option(), apply_filters() |
!isset($value) && empty($post) && $post_status !== "pending" && !is_sticky() | 69–71 | get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" && $post_status !== "pending" && !is_sticky() | 69 | _x(), _x(), _x(), is_sticky(), get_option(), get_option(), apply_filters() |
!isset($value) && empty($post) && get_post_meta() | 70–74 | get_post_meta(), __(), is_sticky(), _x(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && empty($post) && get_post_meta() && is_sticky() | 70–74 | get_post_meta(), __(), is_sticky(), _x(), _x(), get_option(), get_option(), apply_filters() |
!isset($value) && get_post_meta() && !is_sticky() | 70–74 | _x(), get_post_meta(), __(), is_sticky(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && get_post_meta() | 70–74 | _x(), get_post_meta(), __(), is_sticky(), _x(), get_option(), get_option(), apply_filters() |
!isset($value) && is_sticky() | 71–75 | _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && empty($post) && !get_post_meta() && is_sticky() | 72–77 | get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && empty($post) && get_post_meta() && !is_sticky() | 72–76 | get_post_meta(), __(), is_sticky(), get_option(), get_option(), get_option(), get_option(), apply_filters() |
!isset($value) && empty($post) && get_post_meta() && $post_status !== "pending" && !is_sticky() | 72–74 | get_post_meta(), __(), _x(), is_sticky(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && empty($post) && get_post_meta() && $post_status !== "pending" | 72–74 | get_post_meta(), __(), _x(), is_sticky(), _x(), get_option(), get_option(), apply_filters() |
!isset($value) && !get_post_meta() | 72–77 | _x(), get_post_meta(), is_sticky(), _x(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && !get_post_meta() && is_sticky() | 72–77 | _x(), get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), apply_filters() |
!isset($value) && get_post_meta() && $post_status !== "pending" && !is_sticky() | 72–74 | _x(), get_post_meta(), __(), _x(), is_sticky(), get_option(), get_option(), apply_filters() |
!isset($value) && empty($post) && !is_sticky() | 73–77 | is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters() |
!isset($value) && empty($post) && !is_sticky() | 73–77 | is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && empty($post) && !is_sticky() | 73–77 | is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters() |
!isset($value) && empty($post) | 73–77 | is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && empty($post) | 73–77 | is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters() |
!isset($value) && empty($post) | 73–77 | is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters() |
!isset($value) && empty($post) && is_sticky() | 73–77 | is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters() |
!isset($value) && !is_sticky() | 73–77 | _x(), is_sticky(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && !is_sticky() | 73–77 | _x(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters() |
!isset($value) && !is_sticky() | 73–77 | _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters() |
!isset($value) | 73–77 | _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters() |
!isset($value) && empty($post) | 73–77 | get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && empty($post) && is_sticky() | 73–77 | get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), apply_filters() |
!isset($value) | 73–75 | _x(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && is_sticky() | 73–75 | _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), apply_filters() |
!isset($value) && !is_sticky() | 73–77 | _x(), get_post_meta(), _x(), is_sticky(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) | 73–77 | _x(), get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), apply_filters() |
!isset($value) && empty($post) && !get_post_meta() && !is_sticky() | 74–79 | get_post_meta(), is_sticky(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && empty($post) && !get_post_meta() && !is_sticky() | 74–79 | get_post_meta(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters() |
!isset($value) && empty($post) && !get_post_meta() && !is_sticky() | 74–79 | get_post_meta(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters() |
!isset($value) && empty($post) && !get_post_meta() | 74–79 | get_post_meta(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters() |
!isset($value) && !get_post_meta() && !is_sticky() | 74–79 | _x(), get_post_meta(), is_sticky(), get_option(), get_option(), get_option(), get_option(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" && !get_post_meta() && !is_sticky() | 74–77 | _x(), _x(), get_post_meta(), is_sticky(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" && !get_post_meta() | 74–77 | _x(), _x(), get_post_meta(), is_sticky(), _x(), get_option(), get_option(), apply_filters() |
!isset($value) && empty($post) && !is_sticky() | 75–79 | get_post_meta(), _x(), is_sticky(), get_option(), get_option(), get_option(), get_option(), apply_filters() |
!isset($value) && empty($post) && $post_status !== "pending" && !is_sticky() | 75–77 | get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && empty($post) && $post_status !== "pending" | 75–77 | get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), apply_filters() |
!isset($value) && !is_sticky() | 75–77 | _x(), _x(), is_sticky(), get_option(), get_option(), get_option(), get_option(), apply_filters() |
!isset($value) && $post_status !== "pending" && !is_sticky() | 75–77 | _x(), get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" && $post_status !== "pending" && !is_sticky() | 75 | _x(), _x(), _x(), is_sticky(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" && $post_status !== "pending" | 75 | _x(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" && !is_sticky() | 75–77 | _x(), _x(), get_post_meta(), _x(), is_sticky(), get_option(), get_option(), apply_filters() |
!isset($value) && empty($post) && get_post_meta() && is_sticky() | 76–80 | get_post_meta(), __(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && get_post_meta() | 76–80 | _x(), get_post_meta(), __(), is_sticky(), _x(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && get_post_meta() && is_sticky() | 76–80 | _x(), get_post_meta(), __(), is_sticky(), _x(), _x(), get_option(), get_option(), apply_filters() |
!isset($value) && empty($post) && get_post_meta() && !is_sticky() | 78–82 | get_post_meta(), __(), is_sticky(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && empty($post) && get_post_meta() && !is_sticky() | 78–82 | get_post_meta(), __(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters() |
!isset($value) && empty($post) && get_post_meta() && !is_sticky() | 78–82 | get_post_meta(), __(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters() |
!isset($value) && empty($post) && get_post_meta() | 78–82 | get_post_meta(), __(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters() |
!isset($value) && empty($post) && get_post_meta() && $post_status !== "pending" | 78–80 | get_post_meta(), __(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && empty($post) && get_post_meta() && $post_status !== "pending" && is_sticky() | 78–80 | get_post_meta(), __(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), apply_filters() |
!isset($value) && !get_post_meta() && is_sticky() | 78–83 | _x(), get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && get_post_meta() && !is_sticky() | 78–82 | _x(), get_post_meta(), __(), is_sticky(), get_option(), get_option(), get_option(), get_option(), apply_filters() |
!isset($value) && get_post_meta() && $post_status !== "pending" && !is_sticky() | 78–80 | _x(), get_post_meta(), __(), _x(), is_sticky(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && get_post_meta() && $post_status !== "pending" | 78–80 | _x(), get_post_meta(), __(), _x(), is_sticky(), _x(), get_option(), get_option(), apply_filters() |
!isset($value) && empty($post) && !is_sticky() | 79–83 | is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters() |
!isset($value) && empty($post) | 79–83 | is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters() |
!isset($value) && empty($post) | 79–83 | is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && empty($post) | 79–83 | is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters() |
!isset($value) && empty($post) && is_sticky() | 79–83 | is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && empty($post) && is_sticky() | 79–83 | is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters() |
!isset($value) && empty($post) && is_sticky() | 79–83 | is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters() |
!isset($value) && !is_sticky() | 79–83 | _x(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters() |
!isset($value) && !is_sticky() | 79–83 | _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && !is_sticky() | 79–83 | _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters() |
!isset($value) | 79–83 | _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) | 79–83 | _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters() |
!isset($value) | 79–83 | _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters() |
!isset($value) && is_sticky() | 79–83 | _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters() |
!isset($value) && empty($post) && is_sticky() | 79–83 | get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && is_sticky() | 79–81 | _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) | 79–83 | _x(), get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && is_sticky() | 79–83 | _x(), get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), apply_filters() |
!isset($value) && empty($post) && !get_post_meta() && !is_sticky() | 80–85 | get_post_meta(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters() |
!isset($value) && empty($post) && !get_post_meta() && !is_sticky() | 80–85 | get_post_meta(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && empty($post) && !get_post_meta() && !is_sticky() | 80–85 | get_post_meta(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters() |
!isset($value) && empty($post) && !get_post_meta() | 80–85 | get_post_meta(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && empty($post) && !get_post_meta() | 80–85 | get_post_meta(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters() |
!isset($value) && empty($post) && !get_post_meta() | 80–85 | get_post_meta(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters() |
!isset($value) && empty($post) && !get_post_meta() && is_sticky() | 80–85 | get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters() |
!isset($value) && empty($post) && get_post_meta() && $post_status !== "pending" && !is_sticky() | 80–82 | get_post_meta(), __(), _x(), is_sticky(), get_option(), get_option(), get_option(), get_option(), apply_filters() |
!isset($value) && !get_post_meta() && !is_sticky() | 80–85 | _x(), get_post_meta(), is_sticky(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && !get_post_meta() && !is_sticky() | 80–85 | _x(), get_post_meta(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters() |
!isset($value) && !get_post_meta() && !is_sticky() | 80–85 | _x(), get_post_meta(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters() |
!isset($value) && !get_post_meta() | 80–85 | _x(), get_post_meta(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" && !get_post_meta() | 80–83 | _x(), _x(), get_post_meta(), is_sticky(), _x(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" && !get_post_meta() && is_sticky() | 80–83 | _x(), _x(), get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), apply_filters() |
!isset($value) && empty($post) && !is_sticky() | 81–85 | get_post_meta(), _x(), is_sticky(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && empty($post) && !is_sticky() | 81–85 | get_post_meta(), _x(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters() |
!isset($value) && empty($post) && !is_sticky() | 81–85 | get_post_meta(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters() |
!isset($value) && empty($post) | 81–85 | get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters() |
!isset($value) && empty($post) && $post_status !== "pending" | 81–83 | get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && empty($post) && $post_status !== "pending" && is_sticky() | 81–83 | get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), apply_filters() |
!isset($value) && !is_sticky() | 81–83 | _x(), _x(), is_sticky(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && !is_sticky() | 81–83 | _x(), _x(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters() |
!isset($value) && !is_sticky() | 81–83 | _x(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters() |
!isset($value) | 81–83 | _x(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters() |
!isset($value) && !is_sticky() | 81–85 | _x(), get_post_meta(), _x(), is_sticky(), get_option(), get_option(), get_option(), get_option(), apply_filters() |
!isset($value) && $post_status !== "pending" && !is_sticky() | 81–83 | _x(), get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && $post_status !== "pending" | 81–83 | _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" && $post_status !== "pending" | 81 | _x(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" && $post_status !== "pending" && is_sticky() | 81 | _x(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" && !is_sticky() | 81–83 | _x(), _x(), get_post_meta(), _x(), is_sticky(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" | 81–83 | _x(), _x(), get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" && !get_post_meta() && !is_sticky() | 82–85 | _x(), _x(), get_post_meta(), is_sticky(), get_option(), get_option(), get_option(), get_option(), apply_filters() |
!isset($value) && get_post_meta() && is_sticky() | 82–86 | _x(), get_post_meta(), __(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && empty($post) && $post_status !== "pending" && !is_sticky() | 83–85 | get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), get_option(), get_option(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" && $post_status !== "pending" && !is_sticky() | 83 | _x(), _x(), _x(), is_sticky(), get_option(), get_option(), get_option(), get_option(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending" && !is_sticky() | 83 | _x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), apply_filters() |
!isset($value) && empty($post) && get_post_meta() && !is_sticky() | 84–88 | get_post_meta(), __(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters() |
!isset($value) && empty($post) && get_post_meta() && !is_sticky() | 84–88 | get_post_meta(), __(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && empty($post) && get_post_meta() && !is_sticky() | 84–88 | get_post_meta(), __(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters() |
!isset($value) && empty($post) && get_post_meta() | 84–88 | get_post_meta(), __(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && empty($post) && get_post_meta() | 84–88 | get_post_meta(), __(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters() |
!isset($value) && empty($post) && get_post_meta() | 84–88 | get_post_meta(), __(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters() |
!isset($value) && empty($post) && get_post_meta() && is_sticky() | 84–88 | get_post_meta(), __(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters() |
!isset($value) && empty($post) && get_post_meta() && $post_status !== "pending" && is_sticky() | 84–86 | get_post_meta(), __(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && get_post_meta() && !is_sticky() | 84–88 | _x(), get_post_meta(), __(), is_sticky(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && get_post_meta() && !is_sticky() | 84–88 | _x(), get_post_meta(), __(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters() |
!isset($value) && get_post_meta() && !is_sticky() | 84–88 | _x(), get_post_meta(), __(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters() |
!isset($value) && get_post_meta() | 84–88 | _x(), get_post_meta(), __(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters() |
!isset($value) && get_post_meta() && $post_status !== "pending" | 84–86 | _x(), get_post_meta(), __(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && get_post_meta() && $post_status !== "pending" && is_sticky() | 84–86 | _x(), get_post_meta(), __(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), apply_filters() |
!isset($value) && empty($post) | 85–89 | is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters() |
!isset($value) && empty($post) && is_sticky() | 85–89 | is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters() |
!isset($value) && empty($post) && is_sticky() | 85–89 | is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && empty($post) && is_sticky() | 85–89 | is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters() |
!isset($value) && !is_sticky() | 85–89 | _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters() |
!isset($value) | 85–89 | _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters() |
!isset($value) | 85–89 | _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) | 85–89 | _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters() |
!isset($value) && is_sticky() | 85–89 | _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && is_sticky() | 85–89 | _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters() |
!isset($value) && is_sticky() | 85–89 | _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters() |
!isset($value) && is_sticky() | 85–89 | _x(), get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && empty($post) && !get_post_meta() && !is_sticky() | 86–91 | get_post_meta(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters() |
!isset($value) && empty($post) && !get_post_meta() | 86–91 | get_post_meta(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters() |
!isset($value) && empty($post) && !get_post_meta() | 86–91 | get_post_meta(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && empty($post) && !get_post_meta() | 86–91 | get_post_meta(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters() |
!isset($value) && empty($post) && !get_post_meta() && is_sticky() | 86–91 | get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && empty($post) && !get_post_meta() && is_sticky() | 86–91 | get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters() |
!isset($value) && empty($post) && !get_post_meta() && is_sticky() | 86–91 | get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters() |
!isset($value) && empty($post) && get_post_meta() && $post_status !== "pending" && !is_sticky() | 86–88 | get_post_meta(), __(), _x(), is_sticky(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && empty($post) && get_post_meta() && $post_status !== "pending" && !is_sticky() | 86–88 | get_post_meta(), __(), _x(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters() |
!isset($value) && empty($post) && get_post_meta() && $post_status !== "pending" && !is_sticky() | 86–88 | get_post_meta(), __(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters() |
!isset($value) && empty($post) && get_post_meta() && $post_status !== "pending" | 86–88 | get_post_meta(), __(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters() |
!isset($value) && !get_post_meta() && !is_sticky() | 86–91 | _x(), get_post_meta(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters() |
!isset($value) && !get_post_meta() && !is_sticky() | 86–91 | _x(), get_post_meta(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && !get_post_meta() && !is_sticky() | 86–91 | _x(), get_post_meta(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters() |
!isset($value) && !get_post_meta() | 86–91 | _x(), get_post_meta(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && !get_post_meta() | 86–91 | _x(), get_post_meta(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters() |
!isset($value) && !get_post_meta() | 86–91 | _x(), get_post_meta(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters() |
!isset($value) && !get_post_meta() && is_sticky() | 86–91 | _x(), get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters() |
!isset($value) && get_post_meta() && $post_status !== "pending" && !is_sticky() | 86–88 | _x(), get_post_meta(), __(), _x(), is_sticky(), get_option(), get_option(), get_option(), get_option(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" && !get_post_meta() && is_sticky() | 86–89 | _x(), _x(), get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && empty($post) && !is_sticky() | 87–91 | get_post_meta(), _x(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters() |
!isset($value) && empty($post) && !is_sticky() | 87–91 | get_post_meta(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && empty($post) && !is_sticky() | 87–91 | get_post_meta(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters() |
!isset($value) && empty($post) | 87–91 | get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && empty($post) | 87–91 | get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters() |
!isset($value) && empty($post) | 87–91 | get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters() |
!isset($value) && empty($post) && is_sticky() | 87–91 | get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters() |
!isset($value) && empty($post) && $post_status !== "pending" && is_sticky() | 87–89 | get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && !is_sticky() | 87–89 | _x(), _x(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters() |
!isset($value) && !is_sticky() | 87–89 | _x(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && !is_sticky() | 87–89 | _x(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters() |
!isset($value) | 87–89 | _x(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) | 87–89 | _x(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters() |
!isset($value) | 87–89 | _x(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters() |
!isset($value) && is_sticky() | 87–89 | _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters() |
!isset($value) && !is_sticky() | 87–91 | _x(), get_post_meta(), _x(), is_sticky(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && !is_sticky() | 87–91 | _x(), get_post_meta(), _x(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters() |
!isset($value) && !is_sticky() | 87–91 | _x(), get_post_meta(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters() |
!isset($value) | 87–91 | _x(), get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters() |
!isset($value) && $post_status !== "pending" | 87–89 | _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && $post_status !== "pending" && is_sticky() | 87–89 | _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" && $post_status !== "pending" && is_sticky() | 87 | _x(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" | 87–89 | _x(), _x(), get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" && is_sticky() | 87–89 | _x(), _x(), get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" && !get_post_meta() && !is_sticky() | 88–91 | _x(), _x(), get_post_meta(), is_sticky(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" && !get_post_meta() && !is_sticky() | 88–91 | _x(), _x(), get_post_meta(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" && !get_post_meta() && !is_sticky() | 88–91 | _x(), _x(), get_post_meta(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" && !get_post_meta() | 88–91 | _x(), _x(), get_post_meta(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters() |
!isset($value) && empty($post) && $post_status !== "pending" && !is_sticky() | 89–91 | get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && empty($post) && $post_status !== "pending" && !is_sticky() | 89–91 | get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters() |
!isset($value) && empty($post) && $post_status !== "pending" && !is_sticky() | 89–91 | get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters() |
!isset($value) && empty($post) && $post_status !== "pending" | 89–91 | get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters() |
!isset($value) && $post_status !== "pending" && !is_sticky() | 89–91 | _x(), get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), get_option(), get_option(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" && $post_status !== "pending" && !is_sticky() | 89 | _x(), _x(), _x(), is_sticky(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" && $post_status !== "pending" && !is_sticky() | 89 | _x(), _x(), _x(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" && $post_status !== "pending" && !is_sticky() | 89 | _x(), _x(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" && $post_status !== "pending" | 89 | _x(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" && !is_sticky() | 89–91 | _x(), _x(), get_post_meta(), _x(), is_sticky(), get_option(), get_option(), get_option(), get_option(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending" && !is_sticky() | 89 | _x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending" | 89 | _x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), apply_filters() |
!isset($value) && empty($post) && get_post_meta() && !is_sticky() | 90–94 | get_post_meta(), __(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters() |
!isset($value) && empty($post) && get_post_meta() | 90–94 | get_post_meta(), __(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters() |
!isset($value) && empty($post) && get_post_meta() | 90–94 | get_post_meta(), __(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && empty($post) && get_post_meta() | 90–94 | get_post_meta(), __(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters() |
!isset($value) && empty($post) && get_post_meta() && is_sticky() | 90–94 | get_post_meta(), __(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && empty($post) && get_post_meta() && is_sticky() | 90–94 | get_post_meta(), __(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters() |
!isset($value) && empty($post) && get_post_meta() && is_sticky() | 90–94 | get_post_meta(), __(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters() |
!isset($value) && get_post_meta() && !is_sticky() | 90–94 | _x(), get_post_meta(), __(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters() |
!isset($value) && get_post_meta() && !is_sticky() | 90–94 | _x(), get_post_meta(), __(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && get_post_meta() && !is_sticky() | 90–94 | _x(), get_post_meta(), __(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters() |
!isset($value) && get_post_meta() | 90–94 | _x(), get_post_meta(), __(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && get_post_meta() | 90–94 | _x(), get_post_meta(), __(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters() |
!isset($value) && get_post_meta() | 90–94 | _x(), get_post_meta(), __(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters() |
!isset($value) && get_post_meta() && is_sticky() | 90–94 | _x(), get_post_meta(), __(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters() |
!isset($value) && get_post_meta() && $post_status !== "pending" && is_sticky() | 90–92 | _x(), get_post_meta(), __(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && empty($post) && is_sticky() | 91–95 | is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters() |
!isset($value) | 91–95 | _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters() |
!isset($value) && is_sticky() | 91–95 | _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters() |
!isset($value) && is_sticky() | 91–95 | _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && is_sticky() | 91–95 | _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters() |
!isset($value) && empty($post) && !get_post_meta() | 92–97 | get_post_meta(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters() |
!isset($value) && empty($post) && !get_post_meta() && is_sticky() | 92–97 | get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters() |
!isset($value) && empty($post) && !get_post_meta() && is_sticky() | 92–97 | get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && empty($post) && !get_post_meta() && is_sticky() | 92–97 | get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters() |
!isset($value) && empty($post) && get_post_meta() && $post_status !== "pending" && !is_sticky() | 92–94 | get_post_meta(), __(), _x(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters() |
!isset($value) && empty($post) && get_post_meta() && $post_status !== "pending" && !is_sticky() | 92–94 | get_post_meta(), __(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && empty($post) && get_post_meta() && $post_status !== "pending" && !is_sticky() | 92–94 | get_post_meta(), __(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters() |
!isset($value) && empty($post) && get_post_meta() && $post_status !== "pending" | 92–94 | get_post_meta(), __(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && empty($post) && get_post_meta() && $post_status !== "pending" | 92–94 | get_post_meta(), __(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters() |
!isset($value) && empty($post) && get_post_meta() && $post_status !== "pending" | 92–94 | get_post_meta(), __(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters() |
!isset($value) && empty($post) && get_post_meta() && $post_status !== "pending" && is_sticky() | 92–94 | get_post_meta(), __(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters() |
!isset($value) && !get_post_meta() && !is_sticky() | 92–97 | _x(), get_post_meta(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters() |
!isset($value) && !get_post_meta() | 92–97 | _x(), get_post_meta(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters() |
!isset($value) && !get_post_meta() | 92–97 | _x(), get_post_meta(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && !get_post_meta() | 92–97 | _x(), get_post_meta(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters() |
!isset($value) && !get_post_meta() && is_sticky() | 92–97 | _x(), get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && !get_post_meta() && is_sticky() | 92–97 | _x(), get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters() |
!isset($value) && !get_post_meta() && is_sticky() | 92–97 | _x(), get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters() |
!isset($value) && get_post_meta() && $post_status !== "pending" && !is_sticky() | 92–94 | _x(), get_post_meta(), __(), _x(), is_sticky(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && get_post_meta() && $post_status !== "pending" && !is_sticky() | 92–94 | _x(), get_post_meta(), __(), _x(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters() |
!isset($value) && get_post_meta() && $post_status !== "pending" && !is_sticky() | 92–94 | _x(), get_post_meta(), __(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters() |
!isset($value) && get_post_meta() && $post_status !== "pending" | 92–94 | _x(), get_post_meta(), __(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters() |
!isset($value) && empty($post) && !is_sticky() | 93–97 | get_post_meta(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters() |
!isset($value) && empty($post) | 93–97 | get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters() |
!isset($value) && empty($post) | 93–97 | get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && empty($post) | 93–97 | get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters() |
!isset($value) && empty($post) && is_sticky() | 93–97 | get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && empty($post) && is_sticky() | 93–97 | get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters() |
!isset($value) && empty($post) && is_sticky() | 93–97 | get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters() |
!isset($value) && !is_sticky() | 93–95 | _x(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters() |
!isset($value) | 93–95 | _x(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters() |
!isset($value) | 93–95 | _x(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) | 93–95 | _x(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters() |
!isset($value) && is_sticky() | 93–95 | _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && is_sticky() | 93–95 | _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters() |
!isset($value) && is_sticky() | 93–95 | _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters() |
!isset($value) && !is_sticky() | 93–97 | _x(), get_post_meta(), _x(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters() |
!isset($value) && !is_sticky() | 93–97 | _x(), get_post_meta(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && !is_sticky() | 93–97 | _x(), get_post_meta(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters() |
!isset($value) | 93–97 | _x(), get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) | 93–97 | _x(), get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters() |
!isset($value) | 93–97 | _x(), get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters() |
!isset($value) && is_sticky() | 93–97 | _x(), get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters() |
!isset($value) && $post_status !== "pending" && is_sticky() | 93–95 | _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" && is_sticky() | 93–95 | _x(), _x(), get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" && !get_post_meta() && !is_sticky() | 94–97 | _x(), _x(), get_post_meta(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" && !get_post_meta() && !is_sticky() | 94–97 | _x(), _x(), get_post_meta(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" && !get_post_meta() && !is_sticky() | 94–97 | _x(), _x(), get_post_meta(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" && !get_post_meta() | 94–97 | _x(), _x(), get_post_meta(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" && !get_post_meta() | 94–97 | _x(), _x(), get_post_meta(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" && !get_post_meta() | 94–97 | _x(), _x(), get_post_meta(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" && !get_post_meta() && is_sticky() | 94–97 | _x(), _x(), get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters() |
!isset($value) && empty($post) && $post_status !== "pending" && !is_sticky() | 95–97 | get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters() |
!isset($value) && empty($post) && $post_status !== "pending" && !is_sticky() | 95–97 | get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && empty($post) && $post_status !== "pending" && !is_sticky() | 95–97 | get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters() |
!isset($value) && empty($post) && $post_status !== "pending" | 95–97 | get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && empty($post) && $post_status !== "pending" | 95–97 | get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters() |
!isset($value) && empty($post) && $post_status !== "pending" | 95–97 | get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters() |
!isset($value) && empty($post) && $post_status !== "pending" && is_sticky() | 95–97 | get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters() |
!isset($value) && $post_status !== "pending" && !is_sticky() | 95–97 | _x(), get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && $post_status !== "pending" && !is_sticky() | 95–97 | _x(), get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters() |
!isset($value) && $post_status !== "pending" && !is_sticky() | 95–97 | _x(), get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters() |
!isset($value) && $post_status !== "pending" | 95–97 | _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" && $post_status !== "pending" && !is_sticky() | 95 | _x(), _x(), _x(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" && $post_status !== "pending" && !is_sticky() | 95 | _x(), _x(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" && $post_status !== "pending" && !is_sticky() | 95 | _x(), _x(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" && $post_status !== "pending" | 95 | _x(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" && $post_status !== "pending" | 95 | _x(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" && $post_status !== "pending" | 95 | _x(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" && $post_status !== "pending" && is_sticky() | 95 | _x(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" && !is_sticky() | 95–97 | _x(), _x(), get_post_meta(), _x(), is_sticky(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" && !is_sticky() | 95–97 | _x(), _x(), get_post_meta(), _x(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" && !is_sticky() | 95–97 | _x(), _x(), get_post_meta(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" | 95–97 | _x(), _x(), get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending" | 95 | _x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending" && is_sticky() | 95 | _x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), apply_filters() |
!isset($value) && empty($post) && get_post_meta() | 96–100 | get_post_meta(), __(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters() |
!isset($value) && empty($post) && get_post_meta() && is_sticky() | 96–100 | get_post_meta(), __(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters() |
!isset($value) && empty($post) && get_post_meta() && is_sticky() | 96–100 | get_post_meta(), __(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && empty($post) && get_post_meta() && is_sticky() | 96–100 | get_post_meta(), __(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters() |
!isset($value) && get_post_meta() && !is_sticky() | 96–100 | _x(), get_post_meta(), __(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters() |
!isset($value) && get_post_meta() | 96–100 | _x(), get_post_meta(), __(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters() |
!isset($value) && get_post_meta() | 96–100 | _x(), get_post_meta(), __(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && get_post_meta() | 96–100 | _x(), get_post_meta(), __(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters() |
!isset($value) && get_post_meta() && is_sticky() | 96–100 | _x(), get_post_meta(), __(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && get_post_meta() && is_sticky() | 96–100 | _x(), get_post_meta(), __(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters() |
!isset($value) && get_post_meta() && is_sticky() | 96–100 | _x(), get_post_meta(), __(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending" && !is_sticky() | 97 | _x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), get_option(), get_option(), apply_filters() |
!isset($value) && is_sticky() | 97–101 | _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters() |
!isset($value) && empty($post) && !get_post_meta() && is_sticky() | 98–103 | get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters() |
!isset($value) && empty($post) && get_post_meta() && $post_status !== "pending" && !is_sticky() | 98–100 | get_post_meta(), __(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters() |
!isset($value) && empty($post) && get_post_meta() && $post_status !== "pending" | 98–100 | get_post_meta(), __(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters() |
!isset($value) && empty($post) && get_post_meta() && $post_status !== "pending" | 98–100 | get_post_meta(), __(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && empty($post) && get_post_meta() && $post_status !== "pending" | 98–100 | get_post_meta(), __(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters() |
!isset($value) && empty($post) && get_post_meta() && $post_status !== "pending" && is_sticky() | 98–100 | get_post_meta(), __(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && empty($post) && get_post_meta() && $post_status !== "pending" && is_sticky() | 98–100 | get_post_meta(), __(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters() |
!isset($value) && empty($post) && get_post_meta() && $post_status !== "pending" && is_sticky() | 98–100 | get_post_meta(), __(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters() |
!isset($value) && !get_post_meta() | 98–103 | _x(), get_post_meta(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters() |
!isset($value) && !get_post_meta() && is_sticky() | 98–103 | _x(), get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters() |
!isset($value) && !get_post_meta() && is_sticky() | 98–103 | _x(), get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && !get_post_meta() && is_sticky() | 98–103 | _x(), get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters() |
!isset($value) && get_post_meta() && $post_status !== "pending" && !is_sticky() | 98–100 | _x(), get_post_meta(), __(), _x(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters() |
!isset($value) && get_post_meta() && $post_status !== "pending" && !is_sticky() | 98–100 | _x(), get_post_meta(), __(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && get_post_meta() && $post_status !== "pending" && !is_sticky() | 98–100 | _x(), get_post_meta(), __(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters() |
!isset($value) && get_post_meta() && $post_status !== "pending" | 98–100 | _x(), get_post_meta(), __(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && get_post_meta() && $post_status !== "pending" | 98–100 | _x(), get_post_meta(), __(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters() |
!isset($value) && get_post_meta() && $post_status !== "pending" | 98–100 | _x(), get_post_meta(), __(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters() |
!isset($value) && get_post_meta() && $post_status !== "pending" && is_sticky() | 98–100 | _x(), get_post_meta(), __(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters() |
!isset($value) && empty($post) | 99–103 | get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters() |
!isset($value) && empty($post) && is_sticky() | 99–103 | get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters() |
!isset($value) && empty($post) && is_sticky() | 99–103 | get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && empty($post) && is_sticky() | 99–103 | get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters() |
!isset($value) | 99–101 | _x(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters() |
!isset($value) && is_sticky() | 99–101 | _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters() |
!isset($value) && is_sticky() | 99–101 | _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && is_sticky() | 99–101 | _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters() |
!isset($value) && !is_sticky() | 99–103 | _x(), get_post_meta(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters() |
!isset($value) | 99–103 | _x(), get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters() |
!isset($value) | 99–103 | _x(), get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) | 99–103 | _x(), get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters() |
!isset($value) && is_sticky() | 99–103 | _x(), get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && is_sticky() | 99–103 | _x(), get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters() |
!isset($value) && is_sticky() | 99–103 | _x(), get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" && !get_post_meta() && !is_sticky() | 100–103 | _x(), _x(), get_post_meta(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" && !get_post_meta() | 100–103 | _x(), _x(), get_post_meta(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" && !get_post_meta() | 100–103 | _x(), _x(), get_post_meta(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" && !get_post_meta() | 100–103 | _x(), _x(), get_post_meta(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" && !get_post_meta() && is_sticky() | 100–103 | _x(), _x(), get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" && !get_post_meta() && is_sticky() | 100–103 | _x(), _x(), get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" && !get_post_meta() && is_sticky() | 100–103 | _x(), _x(), get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters() |
!isset($value) && empty($post) && $post_status !== "pending" && !is_sticky() | 101–103 | get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters() |
!isset($value) && empty($post) && $post_status !== "pending" | 101–103 | get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters() |
!isset($value) && empty($post) && $post_status !== "pending" | 101–103 | get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && empty($post) && $post_status !== "pending" | 101–103 | get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters() |
!isset($value) && empty($post) && $post_status !== "pending" && is_sticky() | 101–103 | get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && empty($post) && $post_status !== "pending" && is_sticky() | 101–103 | get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters() |
!isset($value) && empty($post) && $post_status !== "pending" && is_sticky() | 101–103 | get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters() |
!isset($value) && $post_status !== "pending" && !is_sticky() | 101–103 | _x(), get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters() |
!isset($value) && $post_status !== "pending" && !is_sticky() | 101–103 | _x(), get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && $post_status !== "pending" && !is_sticky() | 101–103 | _x(), get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters() |
!isset($value) && $post_status !== "pending" | 101–103 | _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && $post_status !== "pending" | 101–103 | _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters() |
!isset($value) && $post_status !== "pending" | 101–103 | _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters() |
!isset($value) && $post_status !== "pending" && is_sticky() | 101–103 | _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" && $post_status !== "pending" && !is_sticky() | 101 | _x(), _x(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" && $post_status !== "pending" | 101 | _x(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" && $post_status !== "pending" | 101 | _x(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" && $post_status !== "pending" | 101 | _x(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" && $post_status !== "pending" && is_sticky() | 101 | _x(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" && $post_status !== "pending" && is_sticky() | 101 | _x(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" && $post_status !== "pending" && is_sticky() | 101 | _x(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" && !is_sticky() | 101–103 | _x(), _x(), get_post_meta(), _x(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" && !is_sticky() | 101–103 | _x(), _x(), get_post_meta(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" && !is_sticky() | 101–103 | _x(), _x(), get_post_meta(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" | 101–103 | _x(), _x(), get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" | 101–103 | _x(), _x(), get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" | 101–103 | _x(), _x(), get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" && is_sticky() | 101–103 | _x(), _x(), get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending" && is_sticky() | 101 | _x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && empty($post) && get_post_meta() && is_sticky() | 102–106 | get_post_meta(), __(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters() |
!isset($value) && get_post_meta() | 102–106 | _x(), get_post_meta(), __(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters() |
!isset($value) && get_post_meta() && is_sticky() | 102–106 | _x(), get_post_meta(), __(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters() |
!isset($value) && get_post_meta() && is_sticky() | 102–106 | _x(), get_post_meta(), __(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && get_post_meta() && is_sticky() | 102–106 | _x(), get_post_meta(), __(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending" && !is_sticky() | 103 | _x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending" && !is_sticky() | 103 | _x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending" && !is_sticky() | 103 | _x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending" | 103 | _x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters() |
!isset($value) && empty($post) && get_post_meta() && $post_status !== "pending" | 104–106 | get_post_meta(), __(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters() |
!isset($value) && empty($post) && get_post_meta() && $post_status !== "pending" && is_sticky() | 104–106 | get_post_meta(), __(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters() |
!isset($value) && empty($post) && get_post_meta() && $post_status !== "pending" && is_sticky() | 104–106 | get_post_meta(), __(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && empty($post) && get_post_meta() && $post_status !== "pending" && is_sticky() | 104–106 | get_post_meta(), __(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters() |
!isset($value) && !get_post_meta() && is_sticky() | 104–109 | _x(), get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters() |
!isset($value) && get_post_meta() && $post_status !== "pending" && !is_sticky() | 104–106 | _x(), get_post_meta(), __(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters() |
!isset($value) && get_post_meta() && $post_status !== "pending" | 104–106 | _x(), get_post_meta(), __(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters() |
!isset($value) && get_post_meta() && $post_status !== "pending" | 104–106 | _x(), get_post_meta(), __(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && get_post_meta() && $post_status !== "pending" | 104–106 | _x(), get_post_meta(), __(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters() |
!isset($value) && get_post_meta() && $post_status !== "pending" && is_sticky() | 104–106 | _x(), get_post_meta(), __(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && get_post_meta() && $post_status !== "pending" && is_sticky() | 104–106 | _x(), get_post_meta(), __(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters() |
!isset($value) && get_post_meta() && $post_status !== "pending" && is_sticky() | 104–106 | _x(), get_post_meta(), __(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters() |
!isset($value) && empty($post) && is_sticky() | 105–109 | get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters() |
!isset($value) && is_sticky() | 105–107 | _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters() |
!isset($value) | 105–109 | _x(), get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters() |
!isset($value) && is_sticky() | 105–109 | _x(), get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters() |
!isset($value) && is_sticky() | 105–109 | _x(), get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && is_sticky() | 105–109 | _x(), get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" && !get_post_meta() | 106–109 | _x(), _x(), get_post_meta(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" && !get_post_meta() && is_sticky() | 106–109 | _x(), _x(), get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" && !get_post_meta() && is_sticky() | 106–109 | _x(), _x(), get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" && !get_post_meta() && is_sticky() | 106–109 | _x(), _x(), get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters() |
!isset($value) && empty($post) && $post_status !== "pending" | 107–109 | get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters() |
!isset($value) && empty($post) && $post_status !== "pending" && is_sticky() | 107–109 | get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters() |
!isset($value) && empty($post) && $post_status !== "pending" && is_sticky() | 107–109 | get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && empty($post) && $post_status !== "pending" && is_sticky() | 107–109 | get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters() |
!isset($value) && $post_status !== "pending" && !is_sticky() | 107–109 | _x(), get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters() |
!isset($value) && $post_status !== "pending" | 107–109 | _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters() |
!isset($value) && $post_status !== "pending" | 107–109 | _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && $post_status !== "pending" | 107–109 | _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters() |
!isset($value) && $post_status !== "pending" && is_sticky() | 107–109 | _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && $post_status !== "pending" && is_sticky() | 107–109 | _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters() |
!isset($value) && $post_status !== "pending" && is_sticky() | 107–109 | _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" && $post_status !== "pending" | 107 | _x(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" && $post_status !== "pending" && is_sticky() | 107 | _x(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" && $post_status !== "pending" && is_sticky() | 107 | _x(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" && $post_status !== "pending" && is_sticky() | 107 | _x(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" && !is_sticky() | 107–109 | _x(), _x(), get_post_meta(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" | 107–109 | _x(), _x(), get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" | 107–109 | _x(), _x(), get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" | 107–109 | _x(), _x(), get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" && is_sticky() | 107–109 | _x(), _x(), get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" && is_sticky() | 107–109 | _x(), _x(), get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" && is_sticky() | 107–109 | _x(), _x(), get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters() |
!isset($value) && get_post_meta() && is_sticky() | 108–112 | _x(), get_post_meta(), __(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending" && !is_sticky() | 109 | _x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending" && !is_sticky() | 109 | _x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending" && !is_sticky() | 109 | _x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending" | 109 | _x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending" | 109 | _x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending" | 109 | _x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending" && is_sticky() | 109 | _x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters() |
!isset($value) && empty($post) && get_post_meta() && $post_status !== "pending" && is_sticky() | 110–112 | get_post_meta(), __(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters() |
!isset($value) && get_post_meta() && $post_status !== "pending" | 110–112 | _x(), get_post_meta(), __(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters() |
!isset($value) && get_post_meta() && $post_status !== "pending" && is_sticky() | 110–112 | _x(), get_post_meta(), __(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters() |
!isset($value) && get_post_meta() && $post_status !== "pending" && is_sticky() | 110–112 | _x(), get_post_meta(), __(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && get_post_meta() && $post_status !== "pending" && is_sticky() | 110–112 | _x(), get_post_meta(), __(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters() |
!isset($value) && is_sticky() | 111–115 | _x(), get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" && !get_post_meta() && is_sticky() | 112–115 | _x(), _x(), get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters() |
!isset($value) && empty($post) && $post_status !== "pending" && is_sticky() | 113–115 | get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters() |
!isset($value) && $post_status !== "pending" | 113–115 | _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters() |
!isset($value) && $post_status !== "pending" && is_sticky() | 113–115 | _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters() |
!isset($value) && $post_status !== "pending" && is_sticky() | 113–115 | _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && $post_status !== "pending" && is_sticky() | 113–115 | _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" && $post_status !== "pending" && is_sticky() | 113 | _x(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" | 113–115 | _x(), _x(), get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" && is_sticky() | 113–115 | _x(), _x(), get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" && is_sticky() | 113–115 | _x(), _x(), get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" && is_sticky() | 113–115 | _x(), _x(), get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending" && !is_sticky() | 115 | _x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending" | 115 | _x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending" | 115 | _x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending" | 115 | _x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending" && is_sticky() | 115 | _x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending" && is_sticky() | 115 | _x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending" && is_sticky() | 115 | _x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters() |
!isset($value) && get_post_meta() && $post_status !== "pending" && is_sticky() | 116–118 | _x(), get_post_meta(), __(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters() |
!isset($value) && $post_status !== "pending" && is_sticky() | 119–121 | _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" && is_sticky() | 119–121 | _x(), _x(), get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending" | 121 | _x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending" && is_sticky() | 121 | _x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending" && is_sticky() | 121 | _x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending" && is_sticky() | 121 | _x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters() |
!isset($value) && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending" && is_sticky() | 127 | _x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters() |
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
Compiles the same on PHP 7.4, 8.1, 8.2, 8.3, 8.4, 8.5 and 8.6-dev: 153 instructions, 47–127 executed per call, 17 branches. The work does not change between versions.
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 · 1
One hook fires while get_post_states() runs, in this order:
- apply_filters( display_post_states )filterline 2362 (+66 into the body)
Filters the default post display states used in the posts list table.
Uses · 6
- _x()Retrieves translated string with gettext context.
- get_post_meta()Retrieves a post meta field for the given post ID.
- __()Retrieves the translation of $text.
- is_sticky()Determines whether a post is sticky.
- get_option()Retrieves an option value based on an option name.
- apply_filters()Calls the callback functions that have been added to a filter hook.
Used by · 4
- WP_Customize_Nav_Menus::load_available_items_query()Performs the post_type and taxonomy queries for loading available menu items.
- WP_Customize_Nav_Menus::search_available_items_query()Performs post queries for available-item searching.
- _post_states()Echoes or returns the post states as HTML.
- wp_setup_nav_menu_item()Decorates a menu item object with the shared navigation menu item properties.
Source code
function get_post_states( $post ) { $post_states = array(); if ( isset( $_REQUEST['post_status'] ) ) { $post_status = $_REQUEST['post_status']; } else { $post_status = ''; } if ( ! empty( $post->post_password ) ) { $post_states['protected'] = _x( 'Password protected', 'post status' ); } if ( 'private' === $post->post_status && 'private' !== $post_status ) { $post_states['private'] = _x( 'Private', 'post status' ); } if ( 'draft' === $post->post_status ) { if ( get_post_meta( $post->ID, '_customize_changeset_uuid', true ) ) { $post_states[] = __( 'Customization Draft' ); } elseif ( 'draft' !== $post_status ) { $post_states['draft'] = _x( 'Draft', 'post status' ); } } elseif ( 'trash' === $post->post_status && get_post_meta( $post->ID, '_customize_changeset_uuid', true ) ) { $post_states[] = _x( 'Customization Draft', 'post status' ); } if ( 'pending' === $post->post_status && 'pending' !== $post_status ) { $post_states['pending'] = _x( 'Pending', 'post status' ); } if ( is_sticky( $post->ID ) ) { $post_states['sticky'] = _x( 'Sticky', 'post status' ); } if ( 'future' === $post->post_status ) { $post_states['scheduled'] = _x( 'Scheduled', 'post status' ); } if ( 'page' === get_option( 'show_on_front' ) ) { if ( (int) get_option( 'page_on_front' ) === $post->ID ) { $post_states['page_on_front'] = _x( 'Front Page', 'page label' ); } if ( (int) get_option( 'page_for_posts' ) === $post->ID ) { $post_states['page_for_posts'] = _x( 'Posts Page', 'page label' ); } } if ( (int) get_option( 'wp_page_for_privacy_policy' ) === $post->ID ) { $post_states['page_for_privacy_policy'] = _x( 'Privacy Policy Page', 'page label' ); } /** * Filters the default post display states used in the posts list table. * * @since 2.8.0 * @since 3.6.0 Added the `$post` parameter. * @since 5.5.0 Also applied in the Customizer context. If any admin functions * are used within the filter, their existence should be checked * with `function_exists()` before being used. * * @param array<string, string> $post_states A mapping of post state slugs to translated post state labels. * E.g. `array( 'draft' => __( 'Draft' ), 'sticky' => __( 'Sticky' ), ... )`. * @param WP_Post $post The current post object. */ return apply_filters( 'display_post_states', $post_states, $post );}Changelog
Introduced in 5.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.9.7 tag, from
src/wp-admin/includes/template.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.