get_post_states( WP_Post $post ): string[]
- Since
- 5.3.0
- Source
wp-admin/includes/template.php:2303
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
- 49–129
- 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 154.
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 |
|---|---|---|
$post instanceof && empty($post) && !is_sticky() | 49–53 | is_sticky(), get_option(), get_option(), apply_filters() |
$post instanceof && empty($post) && !is_sticky() | 55–59 | is_sticky(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && empty($post) | 55–59 | is_sticky(), _x(), get_option(), get_option(), apply_filters() |
$post instanceof && !is_sticky() | 55–59 | _x(), is_sticky(), get_option(), get_option(), apply_filters() |
$post instanceof && empty($post) && !get_post_meta() && !is_sticky() | 56–61 | get_post_meta(), is_sticky(), get_option(), get_option(), apply_filters() |
$post instanceof && empty($post) && get_post_meta() && !is_sticky() | 60–64 | get_post_meta(), __(), is_sticky(), get_option(), get_option(), apply_filters() |
$post instanceof && empty($post) | 61–65 | is_sticky(), _x(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && empty($post) && is_sticky() | 61–65 | is_sticky(), _x(), _x(), get_option(), get_option(), apply_filters() |
$post instanceof && !is_sticky() | 61–65 | _x(), is_sticky(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof | 61–65 | _x(), is_sticky(), _x(), get_option(), get_option(), apply_filters() |
$post instanceof && empty($post) && !get_post_meta() && !is_sticky() | 62–67 | get_post_meta(), is_sticky(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && empty($post) && !get_post_meta() | 62–67 | get_post_meta(), is_sticky(), _x(), get_option(), get_option(), apply_filters() |
498 further outcomes, up to 129 instructions
$post instanceof && !get_post_meta() && !is_sticky() | 62–67 | _x(), get_post_meta(), is_sticky(), get_option(), get_option(), apply_filters() |
$post instanceof && empty($post) && !is_sticky() | 63–67 | is_sticky(), get_option(), get_option(), get_option(), get_option(), apply_filters() |
$post instanceof && empty($post) && !is_sticky() | 63–67 | get_post_meta(), _x(), is_sticky(), get_option(), get_option(), apply_filters() |
$post instanceof && !is_sticky() | 63–65 | _x(), _x(), is_sticky(), get_option(), get_option(), apply_filters() |
$post instanceof && empty($post) && get_post_meta() && !is_sticky() | 66–70 | get_post_meta(), __(), is_sticky(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && empty($post) && get_post_meta() | 66–70 | get_post_meta(), __(), is_sticky(), _x(), get_option(), get_option(), apply_filters() |
$post instanceof && get_post_meta() && !is_sticky() | 66–70 | _x(), get_post_meta(), __(), is_sticky(), get_option(), get_option(), apply_filters() |
$post instanceof && empty($post) && is_sticky() | 67–71 | is_sticky(), _x(), _x(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof | 67–71 | _x(), is_sticky(), _x(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && is_sticky() | 67–71 | _x(), is_sticky(), _x(), _x(), get_option(), get_option(), apply_filters() |
$post instanceof && empty($post) && !get_post_meta() | 68–73 | get_post_meta(), is_sticky(), _x(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && empty($post) && !get_post_meta() && is_sticky() | 68–73 | get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), apply_filters() |
$post instanceof && empty($post) && get_post_meta() && $post_status !== "pending" && !is_sticky() | 68–70 | get_post_meta(), __(), _x(), is_sticky(), get_option(), get_option(), apply_filters() |
$post instanceof && !get_post_meta() && !is_sticky() | 68–73 | _x(), get_post_meta(), is_sticky(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && !get_post_meta() | 68–73 | _x(), get_post_meta(), is_sticky(), _x(), get_option(), get_option(), apply_filters() |
$post instanceof && empty($post) && !is_sticky() | 69–73 | is_sticky(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && empty($post) && !is_sticky() | 69–73 | is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters() |
$post instanceof && empty($post) && !is_sticky() | 69–73 | is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters() |
$post instanceof && empty($post) | 69–73 | is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters() |
$post instanceof && !is_sticky() | 69–73 | _x(), is_sticky(), get_option(), get_option(), get_option(), get_option(), apply_filters() |
$post instanceof && empty($post) && !is_sticky() | 69–73 | get_post_meta(), _x(), is_sticky(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && empty($post) | 69–73 | get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), apply_filters() |
$post instanceof && !is_sticky() | 69–71 | _x(), _x(), is_sticky(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof | 69–71 | _x(), _x(), is_sticky(), _x(), get_option(), get_option(), apply_filters() |
$post instanceof && !is_sticky() | 69–73 | _x(), get_post_meta(), _x(), is_sticky(), get_option(), get_option(), apply_filters() |
$post instanceof && empty($post) && !get_post_meta() && !is_sticky() | 70–75 | get_post_meta(), is_sticky(), get_option(), get_option(), get_option(), get_option(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" && !get_post_meta() && !is_sticky() | 70–73 | _x(), _x(), get_post_meta(), is_sticky(), get_option(), get_option(), apply_filters() |
$post instanceof && empty($post) && $post_status !== "pending" && !is_sticky() | 71–73 | get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" && $post_status !== "pending" && !is_sticky() | 71 | _x(), _x(), _x(), is_sticky(), get_option(), get_option(), apply_filters() |
$post instanceof && empty($post) && get_post_meta() | 72–76 | get_post_meta(), __(), is_sticky(), _x(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && empty($post) && get_post_meta() && is_sticky() | 72–76 | get_post_meta(), __(), is_sticky(), _x(), _x(), get_option(), get_option(), apply_filters() |
$post instanceof && get_post_meta() && !is_sticky() | 72–76 | _x(), get_post_meta(), __(), is_sticky(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && get_post_meta() | 72–76 | _x(), get_post_meta(), __(), is_sticky(), _x(), get_option(), get_option(), apply_filters() |
$post instanceof && is_sticky() | 73–77 | _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && empty($post) && !get_post_meta() && is_sticky() | 74–79 | get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && empty($post) && get_post_meta() && !is_sticky() | 74–78 | get_post_meta(), __(), is_sticky(), get_option(), get_option(), get_option(), get_option(), apply_filters() |
$post instanceof && empty($post) && get_post_meta() && $post_status !== "pending" && !is_sticky() | 74–76 | get_post_meta(), __(), _x(), is_sticky(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && empty($post) && get_post_meta() && $post_status !== "pending" | 74–76 | get_post_meta(), __(), _x(), is_sticky(), _x(), get_option(), get_option(), apply_filters() |
$post instanceof && !get_post_meta() | 74–79 | _x(), get_post_meta(), is_sticky(), _x(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && !get_post_meta() && is_sticky() | 74–79 | _x(), get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), apply_filters() |
$post instanceof && get_post_meta() && $post_status !== "pending" && !is_sticky() | 74–76 | _x(), get_post_meta(), __(), _x(), is_sticky(), get_option(), get_option(), apply_filters() |
$post instanceof && empty($post) && !is_sticky() | 75–79 | is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters() |
$post instanceof && empty($post) && !is_sticky() | 75–79 | is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && empty($post) && !is_sticky() | 75–79 | is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters() |
$post instanceof && empty($post) | 75–79 | is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && empty($post) | 75–79 | is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters() |
$post instanceof && empty($post) | 75–79 | is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters() |
$post instanceof && empty($post) && is_sticky() | 75–79 | is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters() |
$post instanceof && !is_sticky() | 75–79 | _x(), is_sticky(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && !is_sticky() | 75–79 | _x(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters() |
$post instanceof && !is_sticky() | 75–79 | _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters() |
$post instanceof | 75–79 | _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters() |
$post instanceof && empty($post) | 75–79 | get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && empty($post) && is_sticky() | 75–79 | get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), apply_filters() |
$post instanceof | 75–77 | _x(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && is_sticky() | 75–77 | _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), apply_filters() |
$post instanceof && !is_sticky() | 75–79 | _x(), get_post_meta(), _x(), is_sticky(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof | 75–79 | _x(), get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), apply_filters() |
$post instanceof && empty($post) && !get_post_meta() && !is_sticky() | 76–81 | get_post_meta(), is_sticky(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && empty($post) && !get_post_meta() && !is_sticky() | 76–81 | get_post_meta(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters() |
$post instanceof && empty($post) && !get_post_meta() && !is_sticky() | 76–81 | get_post_meta(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters() |
$post instanceof && empty($post) && !get_post_meta() | 76–81 | get_post_meta(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters() |
$post instanceof && !get_post_meta() && !is_sticky() | 76–81 | _x(), get_post_meta(), is_sticky(), get_option(), get_option(), get_option(), get_option(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" && !get_post_meta() && !is_sticky() | 76–79 | _x(), _x(), get_post_meta(), is_sticky(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" && !get_post_meta() | 76–79 | _x(), _x(), get_post_meta(), is_sticky(), _x(), get_option(), get_option(), apply_filters() |
$post instanceof && empty($post) && !is_sticky() | 77–81 | get_post_meta(), _x(), is_sticky(), get_option(), get_option(), get_option(), get_option(), apply_filters() |
$post instanceof && empty($post) && $post_status !== "pending" && !is_sticky() | 77–79 | get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && empty($post) && $post_status !== "pending" | 77–79 | get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), apply_filters() |
$post instanceof && !is_sticky() | 77–79 | _x(), _x(), is_sticky(), get_option(), get_option(), get_option(), get_option(), apply_filters() |
$post instanceof && $post_status !== "pending" && !is_sticky() | 77–79 | _x(), get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" && $post_status !== "pending" && !is_sticky() | 77 | _x(), _x(), _x(), is_sticky(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" && $post_status !== "pending" | 77 | _x(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" && !is_sticky() | 77–79 | _x(), _x(), get_post_meta(), _x(), is_sticky(), get_option(), get_option(), apply_filters() |
$post instanceof && empty($post) && get_post_meta() && is_sticky() | 78–82 | get_post_meta(), __(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && get_post_meta() | 78–82 | _x(), get_post_meta(), __(), is_sticky(), _x(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && get_post_meta() && is_sticky() | 78–82 | _x(), get_post_meta(), __(), is_sticky(), _x(), _x(), get_option(), get_option(), apply_filters() |
$post instanceof && empty($post) && get_post_meta() && !is_sticky() | 80–84 | get_post_meta(), __(), is_sticky(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && empty($post) && get_post_meta() && !is_sticky() | 80–84 | get_post_meta(), __(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters() |
$post instanceof && empty($post) && get_post_meta() && !is_sticky() | 80–84 | get_post_meta(), __(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters() |
$post instanceof && empty($post) && get_post_meta() | 80–84 | get_post_meta(), __(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters() |
$post instanceof && empty($post) && get_post_meta() && $post_status !== "pending" | 80–82 | get_post_meta(), __(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && empty($post) && get_post_meta() && $post_status !== "pending" && is_sticky() | 80–82 | get_post_meta(), __(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), apply_filters() |
$post instanceof && !get_post_meta() && is_sticky() | 80–85 | _x(), get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && get_post_meta() && !is_sticky() | 80–84 | _x(), get_post_meta(), __(), is_sticky(), get_option(), get_option(), get_option(), get_option(), apply_filters() |
$post instanceof && get_post_meta() && $post_status !== "pending" && !is_sticky() | 80–82 | _x(), get_post_meta(), __(), _x(), is_sticky(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && get_post_meta() && $post_status !== "pending" | 80–82 | _x(), get_post_meta(), __(), _x(), is_sticky(), _x(), get_option(), get_option(), apply_filters() |
$post instanceof && empty($post) && !is_sticky() | 81–85 | is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters() |
$post instanceof && empty($post) | 81–85 | is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters() |
$post instanceof && empty($post) | 81–85 | is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && empty($post) | 81–85 | is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters() |
$post instanceof && empty($post) && is_sticky() | 81–85 | is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && empty($post) && is_sticky() | 81–85 | is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters() |
$post instanceof && empty($post) && is_sticky() | 81–85 | is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters() |
$post instanceof && !is_sticky() | 81–85 | _x(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters() |
$post instanceof && !is_sticky() | 81–85 | _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && !is_sticky() | 81–85 | _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters() |
$post instanceof | 81–85 | _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof | 81–85 | _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters() |
$post instanceof | 81–85 | _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters() |
$post instanceof && is_sticky() | 81–85 | _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters() |
$post instanceof && empty($post) && is_sticky() | 81–85 | get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && is_sticky() | 81–83 | _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof | 81–85 | _x(), get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && is_sticky() | 81–85 | _x(), get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), apply_filters() |
$post instanceof && empty($post) && !get_post_meta() && !is_sticky() | 82–87 | get_post_meta(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters() |
$post instanceof && empty($post) && !get_post_meta() && !is_sticky() | 82–87 | get_post_meta(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && empty($post) && !get_post_meta() && !is_sticky() | 82–87 | get_post_meta(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters() |
$post instanceof && empty($post) && !get_post_meta() | 82–87 | get_post_meta(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && empty($post) && !get_post_meta() | 82–87 | get_post_meta(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters() |
$post instanceof && empty($post) && !get_post_meta() | 82–87 | get_post_meta(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters() |
$post instanceof && empty($post) && !get_post_meta() && is_sticky() | 82–87 | get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters() |
$post instanceof && empty($post) && get_post_meta() && $post_status !== "pending" && !is_sticky() | 82–84 | get_post_meta(), __(), _x(), is_sticky(), get_option(), get_option(), get_option(), get_option(), apply_filters() |
$post instanceof && !get_post_meta() && !is_sticky() | 82–87 | _x(), get_post_meta(), is_sticky(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && !get_post_meta() && !is_sticky() | 82–87 | _x(), get_post_meta(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters() |
$post instanceof && !get_post_meta() && !is_sticky() | 82–87 | _x(), get_post_meta(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters() |
$post instanceof && !get_post_meta() | 82–87 | _x(), get_post_meta(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" && !get_post_meta() | 82–85 | _x(), _x(), get_post_meta(), is_sticky(), _x(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" && !get_post_meta() && is_sticky() | 82–85 | _x(), _x(), get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), apply_filters() |
$post instanceof && empty($post) && !is_sticky() | 83–87 | get_post_meta(), _x(), is_sticky(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && empty($post) && !is_sticky() | 83–87 | get_post_meta(), _x(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters() |
$post instanceof && empty($post) && !is_sticky() | 83–87 | get_post_meta(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters() |
$post instanceof && empty($post) | 83–87 | get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters() |
$post instanceof && empty($post) && $post_status !== "pending" | 83–85 | get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && empty($post) && $post_status !== "pending" && is_sticky() | 83–85 | get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), apply_filters() |
$post instanceof && !is_sticky() | 83–85 | _x(), _x(), is_sticky(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && !is_sticky() | 83–85 | _x(), _x(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters() |
$post instanceof && !is_sticky() | 83–85 | _x(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters() |
$post instanceof | 83–85 | _x(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters() |
$post instanceof && !is_sticky() | 83–87 | _x(), get_post_meta(), _x(), is_sticky(), get_option(), get_option(), get_option(), get_option(), apply_filters() |
$post instanceof && $post_status !== "pending" && !is_sticky() | 83–85 | _x(), get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && $post_status !== "pending" | 83–85 | _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" && $post_status !== "pending" | 83 | _x(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" && $post_status !== "pending" && is_sticky() | 83 | _x(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" && !is_sticky() | 83–85 | _x(), _x(), get_post_meta(), _x(), is_sticky(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" | 83–85 | _x(), _x(), get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" && !get_post_meta() && !is_sticky() | 84–87 | _x(), _x(), get_post_meta(), is_sticky(), get_option(), get_option(), get_option(), get_option(), apply_filters() |
$post instanceof && get_post_meta() && is_sticky() | 84–88 | _x(), get_post_meta(), __(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && empty($post) && $post_status !== "pending" && !is_sticky() | 85–87 | get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), get_option(), get_option(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" && $post_status !== "pending" && !is_sticky() | 85 | _x(), _x(), _x(), is_sticky(), get_option(), get_option(), get_option(), get_option(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending" && !is_sticky() | 85 | _x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), apply_filters() |
$post instanceof && empty($post) && get_post_meta() && !is_sticky() | 86–90 | get_post_meta(), __(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters() |
$post instanceof && empty($post) && get_post_meta() && !is_sticky() | 86–90 | get_post_meta(), __(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && empty($post) && get_post_meta() && !is_sticky() | 86–90 | get_post_meta(), __(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters() |
$post instanceof && empty($post) && get_post_meta() | 86–90 | get_post_meta(), __(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && empty($post) && get_post_meta() | 86–90 | get_post_meta(), __(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters() |
$post instanceof && empty($post) && get_post_meta() | 86–90 | get_post_meta(), __(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters() |
$post instanceof && empty($post) && get_post_meta() && is_sticky() | 86–90 | get_post_meta(), __(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters() |
$post instanceof && empty($post) && get_post_meta() && $post_status !== "pending" && is_sticky() | 86–88 | get_post_meta(), __(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && get_post_meta() && !is_sticky() | 86–90 | _x(), get_post_meta(), __(), is_sticky(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && get_post_meta() && !is_sticky() | 86–90 | _x(), get_post_meta(), __(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters() |
$post instanceof && get_post_meta() && !is_sticky() | 86–90 | _x(), get_post_meta(), __(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters() |
$post instanceof && get_post_meta() | 86–90 | _x(), get_post_meta(), __(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters() |
$post instanceof && get_post_meta() && $post_status !== "pending" | 86–88 | _x(), get_post_meta(), __(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && get_post_meta() && $post_status !== "pending" && is_sticky() | 86–88 | _x(), get_post_meta(), __(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), apply_filters() |
$post instanceof && empty($post) | 87–91 | is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters() |
$post instanceof && empty($post) && is_sticky() | 87–91 | is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters() |
$post instanceof && empty($post) && is_sticky() | 87–91 | is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && empty($post) && is_sticky() | 87–91 | is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters() |
$post instanceof && !is_sticky() | 87–91 | _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters() |
$post instanceof | 87–91 | _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters() |
$post instanceof | 87–91 | _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof | 87–91 | _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters() |
$post instanceof && is_sticky() | 87–91 | _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && is_sticky() | 87–91 | _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters() |
$post instanceof && is_sticky() | 87–91 | _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters() |
$post instanceof && is_sticky() | 87–91 | _x(), get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && empty($post) && !get_post_meta() && !is_sticky() | 88–93 | get_post_meta(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters() |
$post instanceof && empty($post) && !get_post_meta() | 88–93 | get_post_meta(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters() |
$post instanceof && empty($post) && !get_post_meta() | 88–93 | get_post_meta(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && empty($post) && !get_post_meta() | 88–93 | get_post_meta(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters() |
$post instanceof && empty($post) && !get_post_meta() && is_sticky() | 88–93 | get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && empty($post) && !get_post_meta() && is_sticky() | 88–93 | get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters() |
$post instanceof && empty($post) && !get_post_meta() && is_sticky() | 88–93 | get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters() |
$post instanceof && empty($post) && get_post_meta() && $post_status !== "pending" && !is_sticky() | 88–90 | get_post_meta(), __(), _x(), is_sticky(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && empty($post) && get_post_meta() && $post_status !== "pending" && !is_sticky() | 88–90 | get_post_meta(), __(), _x(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters() |
$post instanceof && empty($post) && get_post_meta() && $post_status !== "pending" && !is_sticky() | 88–90 | get_post_meta(), __(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters() |
$post instanceof && empty($post) && get_post_meta() && $post_status !== "pending" | 88–90 | get_post_meta(), __(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters() |
$post instanceof && !get_post_meta() && !is_sticky() | 88–93 | _x(), get_post_meta(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters() |
$post instanceof && !get_post_meta() && !is_sticky() | 88–93 | _x(), get_post_meta(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && !get_post_meta() && !is_sticky() | 88–93 | _x(), get_post_meta(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters() |
$post instanceof && !get_post_meta() | 88–93 | _x(), get_post_meta(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && !get_post_meta() | 88–93 | _x(), get_post_meta(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters() |
$post instanceof && !get_post_meta() | 88–93 | _x(), get_post_meta(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters() |
$post instanceof && !get_post_meta() && is_sticky() | 88–93 | _x(), get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters() |
$post instanceof && get_post_meta() && $post_status !== "pending" && !is_sticky() | 88–90 | _x(), get_post_meta(), __(), _x(), is_sticky(), get_option(), get_option(), get_option(), get_option(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" && !get_post_meta() && is_sticky() | 88–91 | _x(), _x(), get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && empty($post) && !is_sticky() | 89–93 | get_post_meta(), _x(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters() |
$post instanceof && empty($post) && !is_sticky() | 89–93 | get_post_meta(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && empty($post) && !is_sticky() | 89–93 | get_post_meta(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters() |
$post instanceof && empty($post) | 89–93 | get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && empty($post) | 89–93 | get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters() |
$post instanceof && empty($post) | 89–93 | get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters() |
$post instanceof && empty($post) && is_sticky() | 89–93 | get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters() |
$post instanceof && empty($post) && $post_status !== "pending" && is_sticky() | 89–91 | get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && !is_sticky() | 89–91 | _x(), _x(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters() |
$post instanceof && !is_sticky() | 89–91 | _x(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && !is_sticky() | 89–91 | _x(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters() |
$post instanceof | 89–91 | _x(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof | 89–91 | _x(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters() |
$post instanceof | 89–91 | _x(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters() |
$post instanceof && is_sticky() | 89–91 | _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters() |
$post instanceof && !is_sticky() | 89–93 | _x(), get_post_meta(), _x(), is_sticky(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && !is_sticky() | 89–93 | _x(), get_post_meta(), _x(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters() |
$post instanceof && !is_sticky() | 89–93 | _x(), get_post_meta(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters() |
$post instanceof | 89–93 | _x(), get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters() |
$post instanceof && $post_status !== "pending" | 89–91 | _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && $post_status !== "pending" && is_sticky() | 89–91 | _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" && $post_status !== "pending" && is_sticky() | 89 | _x(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" | 89–91 | _x(), _x(), get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" && is_sticky() | 89–91 | _x(), _x(), get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" && !get_post_meta() && !is_sticky() | 90–93 | _x(), _x(), get_post_meta(), is_sticky(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" && !get_post_meta() && !is_sticky() | 90–93 | _x(), _x(), get_post_meta(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" && !get_post_meta() && !is_sticky() | 90–93 | _x(), _x(), get_post_meta(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" && !get_post_meta() | 90–93 | _x(), _x(), get_post_meta(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters() |
$post instanceof && empty($post) && $post_status !== "pending" && !is_sticky() | 91–93 | get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && empty($post) && $post_status !== "pending" && !is_sticky() | 91–93 | get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters() |
$post instanceof && empty($post) && $post_status !== "pending" && !is_sticky() | 91–93 | get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters() |
$post instanceof && empty($post) && $post_status !== "pending" | 91–93 | get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters() |
$post instanceof && $post_status !== "pending" && !is_sticky() | 91–93 | _x(), get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), get_option(), get_option(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" && $post_status !== "pending" && !is_sticky() | 91 | _x(), _x(), _x(), is_sticky(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" && $post_status !== "pending" && !is_sticky() | 91 | _x(), _x(), _x(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" && $post_status !== "pending" && !is_sticky() | 91 | _x(), _x(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" && $post_status !== "pending" | 91 | _x(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" && !is_sticky() | 91–93 | _x(), _x(), get_post_meta(), _x(), is_sticky(), get_option(), get_option(), get_option(), get_option(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending" && !is_sticky() | 91 | _x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending" | 91 | _x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), apply_filters() |
$post instanceof && empty($post) && get_post_meta() && !is_sticky() | 92–96 | get_post_meta(), __(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters() |
$post instanceof && empty($post) && get_post_meta() | 92–96 | get_post_meta(), __(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters() |
$post instanceof && empty($post) && get_post_meta() | 92–96 | get_post_meta(), __(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && empty($post) && get_post_meta() | 92–96 | get_post_meta(), __(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters() |
$post instanceof && empty($post) && get_post_meta() && is_sticky() | 92–96 | get_post_meta(), __(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && empty($post) && get_post_meta() && is_sticky() | 92–96 | get_post_meta(), __(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters() |
$post instanceof && empty($post) && get_post_meta() && is_sticky() | 92–96 | get_post_meta(), __(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters() |
$post instanceof && get_post_meta() && !is_sticky() | 92–96 | _x(), get_post_meta(), __(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters() |
$post instanceof && get_post_meta() && !is_sticky() | 92–96 | _x(), get_post_meta(), __(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && get_post_meta() && !is_sticky() | 92–96 | _x(), get_post_meta(), __(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters() |
$post instanceof && get_post_meta() | 92–96 | _x(), get_post_meta(), __(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && get_post_meta() | 92–96 | _x(), get_post_meta(), __(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters() |
$post instanceof && get_post_meta() | 92–96 | _x(), get_post_meta(), __(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters() |
$post instanceof && get_post_meta() && is_sticky() | 92–96 | _x(), get_post_meta(), __(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters() |
$post instanceof && get_post_meta() && $post_status !== "pending" && is_sticky() | 92–94 | _x(), get_post_meta(), __(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && empty($post) && is_sticky() | 93–97 | is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters() |
$post instanceof | 93–97 | _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters() |
$post instanceof && is_sticky() | 93–97 | _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters() |
$post instanceof && is_sticky() | 93–97 | _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && is_sticky() | 93–97 | _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters() |
$post instanceof && empty($post) && !get_post_meta() | 94–99 | get_post_meta(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters() |
$post instanceof && empty($post) && !get_post_meta() && is_sticky() | 94–99 | get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters() |
$post instanceof && empty($post) && !get_post_meta() && is_sticky() | 94–99 | get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && empty($post) && !get_post_meta() && is_sticky() | 94–99 | get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters() |
$post instanceof && empty($post) && get_post_meta() && $post_status !== "pending" && !is_sticky() | 94–96 | get_post_meta(), __(), _x(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters() |
$post instanceof && empty($post) && get_post_meta() && $post_status !== "pending" && !is_sticky() | 94–96 | get_post_meta(), __(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && empty($post) && get_post_meta() && $post_status !== "pending" && !is_sticky() | 94–96 | get_post_meta(), __(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters() |
$post instanceof && empty($post) && get_post_meta() && $post_status !== "pending" | 94–96 | get_post_meta(), __(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && empty($post) && get_post_meta() && $post_status !== "pending" | 94–96 | get_post_meta(), __(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters() |
$post instanceof && empty($post) && get_post_meta() && $post_status !== "pending" | 94–96 | get_post_meta(), __(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters() |
$post instanceof && empty($post) && get_post_meta() && $post_status !== "pending" && is_sticky() | 94–96 | get_post_meta(), __(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters() |
$post instanceof && !get_post_meta() && !is_sticky() | 94–99 | _x(), get_post_meta(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters() |
$post instanceof && !get_post_meta() | 94–99 | _x(), get_post_meta(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters() |
$post instanceof && !get_post_meta() | 94–99 | _x(), get_post_meta(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && !get_post_meta() | 94–99 | _x(), get_post_meta(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters() |
$post instanceof && !get_post_meta() && is_sticky() | 94–99 | _x(), get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && !get_post_meta() && is_sticky() | 94–99 | _x(), get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters() |
$post instanceof && !get_post_meta() && is_sticky() | 94–99 | _x(), get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters() |
$post instanceof && get_post_meta() && $post_status !== "pending" && !is_sticky() | 94–96 | _x(), get_post_meta(), __(), _x(), is_sticky(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && get_post_meta() && $post_status !== "pending" && !is_sticky() | 94–96 | _x(), get_post_meta(), __(), _x(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters() |
$post instanceof && get_post_meta() && $post_status !== "pending" && !is_sticky() | 94–96 | _x(), get_post_meta(), __(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters() |
$post instanceof && get_post_meta() && $post_status !== "pending" | 94–96 | _x(), get_post_meta(), __(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters() |
$post instanceof && empty($post) && !is_sticky() | 95–99 | get_post_meta(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters() |
$post instanceof && empty($post) | 95–99 | get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters() |
$post instanceof && empty($post) | 95–99 | get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && empty($post) | 95–99 | get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters() |
$post instanceof && empty($post) && is_sticky() | 95–99 | get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && empty($post) && is_sticky() | 95–99 | get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters() |
$post instanceof && empty($post) && is_sticky() | 95–99 | get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters() |
$post instanceof && !is_sticky() | 95–97 | _x(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters() |
$post instanceof | 95–97 | _x(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters() |
$post instanceof | 95–97 | _x(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof | 95–97 | _x(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters() |
$post instanceof && is_sticky() | 95–97 | _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && is_sticky() | 95–97 | _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters() |
$post instanceof && is_sticky() | 95–97 | _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters() |
$post instanceof && !is_sticky() | 95–99 | _x(), get_post_meta(), _x(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters() |
$post instanceof && !is_sticky() | 95–99 | _x(), get_post_meta(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && !is_sticky() | 95–99 | _x(), get_post_meta(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters() |
$post instanceof | 95–99 | _x(), get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof | 95–99 | _x(), get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters() |
$post instanceof | 95–99 | _x(), get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters() |
$post instanceof && is_sticky() | 95–99 | _x(), get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters() |
$post instanceof && $post_status !== "pending" && is_sticky() | 95–97 | _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" && is_sticky() | 95–97 | _x(), _x(), get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" && !get_post_meta() && !is_sticky() | 96–99 | _x(), _x(), get_post_meta(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" && !get_post_meta() && !is_sticky() | 96–99 | _x(), _x(), get_post_meta(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" && !get_post_meta() && !is_sticky() | 96–99 | _x(), _x(), get_post_meta(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" && !get_post_meta() | 96–99 | _x(), _x(), get_post_meta(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" && !get_post_meta() | 96–99 | _x(), _x(), get_post_meta(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" && !get_post_meta() | 96–99 | _x(), _x(), get_post_meta(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" && !get_post_meta() && is_sticky() | 96–99 | _x(), _x(), get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters() |
$post instanceof && empty($post) && $post_status !== "pending" && !is_sticky() | 97–99 | get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters() |
$post instanceof && empty($post) && $post_status !== "pending" && !is_sticky() | 97–99 | get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && empty($post) && $post_status !== "pending" && !is_sticky() | 97–99 | get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters() |
$post instanceof && empty($post) && $post_status !== "pending" | 97–99 | get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && empty($post) && $post_status !== "pending" | 97–99 | get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters() |
$post instanceof && empty($post) && $post_status !== "pending" | 97–99 | get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters() |
$post instanceof && empty($post) && $post_status !== "pending" && is_sticky() | 97–99 | get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters() |
$post instanceof && $post_status !== "pending" && !is_sticky() | 97–99 | _x(), get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && $post_status !== "pending" && !is_sticky() | 97–99 | _x(), get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters() |
$post instanceof && $post_status !== "pending" && !is_sticky() | 97–99 | _x(), get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters() |
$post instanceof && $post_status !== "pending" | 97–99 | _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" && $post_status !== "pending" && !is_sticky() | 97 | _x(), _x(), _x(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" && $post_status !== "pending" && !is_sticky() | 97 | _x(), _x(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" && $post_status !== "pending" && !is_sticky() | 97 | _x(), _x(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" && $post_status !== "pending" | 97 | _x(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" && $post_status !== "pending" | 97 | _x(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" && $post_status !== "pending" | 97 | _x(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" && $post_status !== "pending" && is_sticky() | 97 | _x(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" && !is_sticky() | 97–99 | _x(), _x(), get_post_meta(), _x(), is_sticky(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" && !is_sticky() | 97–99 | _x(), _x(), get_post_meta(), _x(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" && !is_sticky() | 97–99 | _x(), _x(), get_post_meta(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" | 97–99 | _x(), _x(), get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending" | 97 | _x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending" && is_sticky() | 97 | _x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), apply_filters() |
$post instanceof && empty($post) && get_post_meta() | 98–102 | get_post_meta(), __(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters() |
$post instanceof && empty($post) && get_post_meta() && is_sticky() | 98–102 | get_post_meta(), __(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters() |
$post instanceof && empty($post) && get_post_meta() && is_sticky() | 98–102 | get_post_meta(), __(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && empty($post) && get_post_meta() && is_sticky() | 98–102 | get_post_meta(), __(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters() |
$post instanceof && get_post_meta() && !is_sticky() | 98–102 | _x(), get_post_meta(), __(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters() |
$post instanceof && get_post_meta() | 98–102 | _x(), get_post_meta(), __(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters() |
$post instanceof && get_post_meta() | 98–102 | _x(), get_post_meta(), __(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && get_post_meta() | 98–102 | _x(), get_post_meta(), __(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters() |
$post instanceof && get_post_meta() && is_sticky() | 98–102 | _x(), get_post_meta(), __(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && get_post_meta() && is_sticky() | 98–102 | _x(), get_post_meta(), __(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters() |
$post instanceof && get_post_meta() && is_sticky() | 98–102 | _x(), get_post_meta(), __(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending" && !is_sticky() | 99 | _x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), get_option(), get_option(), apply_filters() |
$post instanceof && is_sticky() | 99–103 | _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters() |
$post instanceof && empty($post) && !get_post_meta() && is_sticky() | 100–105 | get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters() |
$post instanceof && empty($post) && get_post_meta() && $post_status !== "pending" && !is_sticky() | 100–102 | get_post_meta(), __(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters() |
$post instanceof && empty($post) && get_post_meta() && $post_status !== "pending" | 100–102 | get_post_meta(), __(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters() |
$post instanceof && empty($post) && get_post_meta() && $post_status !== "pending" | 100–102 | get_post_meta(), __(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && empty($post) && get_post_meta() && $post_status !== "pending" | 100–102 | get_post_meta(), __(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters() |
$post instanceof && empty($post) && get_post_meta() && $post_status !== "pending" && is_sticky() | 100–102 | get_post_meta(), __(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && empty($post) && get_post_meta() && $post_status !== "pending" && is_sticky() | 100–102 | get_post_meta(), __(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters() |
$post instanceof && empty($post) && get_post_meta() && $post_status !== "pending" && is_sticky() | 100–102 | get_post_meta(), __(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters() |
$post instanceof && !get_post_meta() | 100–105 | _x(), get_post_meta(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters() |
$post instanceof && !get_post_meta() && is_sticky() | 100–105 | _x(), get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters() |
$post instanceof && !get_post_meta() && is_sticky() | 100–105 | _x(), get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && !get_post_meta() && is_sticky() | 100–105 | _x(), get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters() |
$post instanceof && get_post_meta() && $post_status !== "pending" && !is_sticky() | 100–102 | _x(), get_post_meta(), __(), _x(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters() |
$post instanceof && get_post_meta() && $post_status !== "pending" && !is_sticky() | 100–102 | _x(), get_post_meta(), __(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && get_post_meta() && $post_status !== "pending" && !is_sticky() | 100–102 | _x(), get_post_meta(), __(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters() |
$post instanceof && get_post_meta() && $post_status !== "pending" | 100–102 | _x(), get_post_meta(), __(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && get_post_meta() && $post_status !== "pending" | 100–102 | _x(), get_post_meta(), __(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters() |
$post instanceof && get_post_meta() && $post_status !== "pending" | 100–102 | _x(), get_post_meta(), __(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters() |
$post instanceof && get_post_meta() && $post_status !== "pending" && is_sticky() | 100–102 | _x(), get_post_meta(), __(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters() |
$post instanceof && empty($post) | 101–105 | get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters() |
$post instanceof && empty($post) && is_sticky() | 101–105 | get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters() |
$post instanceof && empty($post) && is_sticky() | 101–105 | get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && empty($post) && is_sticky() | 101–105 | get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters() |
$post instanceof | 101–103 | _x(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters() |
$post instanceof && is_sticky() | 101–103 | _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters() |
$post instanceof && is_sticky() | 101–103 | _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && is_sticky() | 101–103 | _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters() |
$post instanceof && !is_sticky() | 101–105 | _x(), get_post_meta(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters() |
$post instanceof | 101–105 | _x(), get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters() |
$post instanceof | 101–105 | _x(), get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof | 101–105 | _x(), get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters() |
$post instanceof && is_sticky() | 101–105 | _x(), get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && is_sticky() | 101–105 | _x(), get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters() |
$post instanceof && is_sticky() | 101–105 | _x(), get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" && !get_post_meta() && !is_sticky() | 102–105 | _x(), _x(), get_post_meta(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" && !get_post_meta() | 102–105 | _x(), _x(), get_post_meta(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" && !get_post_meta() | 102–105 | _x(), _x(), get_post_meta(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" && !get_post_meta() | 102–105 | _x(), _x(), get_post_meta(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" && !get_post_meta() && is_sticky() | 102–105 | _x(), _x(), get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" && !get_post_meta() && is_sticky() | 102–105 | _x(), _x(), get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" && !get_post_meta() && is_sticky() | 102–105 | _x(), _x(), get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters() |
$post instanceof && empty($post) && $post_status !== "pending" && !is_sticky() | 103–105 | get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters() |
$post instanceof && empty($post) && $post_status !== "pending" | 103–105 | get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters() |
$post instanceof && empty($post) && $post_status !== "pending" | 103–105 | get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && empty($post) && $post_status !== "pending" | 103–105 | get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters() |
$post instanceof && empty($post) && $post_status !== "pending" && is_sticky() | 103–105 | get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && empty($post) && $post_status !== "pending" && is_sticky() | 103–105 | get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters() |
$post instanceof && empty($post) && $post_status !== "pending" && is_sticky() | 103–105 | get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters() |
$post instanceof && $post_status !== "pending" && !is_sticky() | 103–105 | _x(), get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters() |
$post instanceof && $post_status !== "pending" && !is_sticky() | 103–105 | _x(), get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && $post_status !== "pending" && !is_sticky() | 103–105 | _x(), get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters() |
$post instanceof && $post_status !== "pending" | 103–105 | _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && $post_status !== "pending" | 103–105 | _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters() |
$post instanceof && $post_status !== "pending" | 103–105 | _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters() |
$post instanceof && $post_status !== "pending" && is_sticky() | 103–105 | _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" && $post_status !== "pending" && !is_sticky() | 103 | _x(), _x(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" && $post_status !== "pending" | 103 | _x(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" && $post_status !== "pending" | 103 | _x(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" && $post_status !== "pending" | 103 | _x(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" && $post_status !== "pending" && is_sticky() | 103 | _x(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" && $post_status !== "pending" && is_sticky() | 103 | _x(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" && $post_status !== "pending" && is_sticky() | 103 | _x(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" && !is_sticky() | 103–105 | _x(), _x(), get_post_meta(), _x(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" && !is_sticky() | 103–105 | _x(), _x(), get_post_meta(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" && !is_sticky() | 103–105 | _x(), _x(), get_post_meta(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" | 103–105 | _x(), _x(), get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" | 103–105 | _x(), _x(), get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" | 103–105 | _x(), _x(), get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" && is_sticky() | 103–105 | _x(), _x(), get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending" && is_sticky() | 103 | _x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && empty($post) && get_post_meta() && is_sticky() | 104–108 | get_post_meta(), __(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters() |
$post instanceof && get_post_meta() | 104–108 | _x(), get_post_meta(), __(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters() |
$post instanceof && get_post_meta() && is_sticky() | 104–108 | _x(), get_post_meta(), __(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters() |
$post instanceof && get_post_meta() && is_sticky() | 104–108 | _x(), get_post_meta(), __(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && get_post_meta() && is_sticky() | 104–108 | _x(), get_post_meta(), __(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending" && !is_sticky() | 105 | _x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending" && !is_sticky() | 105 | _x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending" && !is_sticky() | 105 | _x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending" | 105 | _x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters() |
$post instanceof && empty($post) && get_post_meta() && $post_status !== "pending" | 106–108 | get_post_meta(), __(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters() |
$post instanceof && empty($post) && get_post_meta() && $post_status !== "pending" && is_sticky() | 106–108 | get_post_meta(), __(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters() |
$post instanceof && empty($post) && get_post_meta() && $post_status !== "pending" && is_sticky() | 106–108 | get_post_meta(), __(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && empty($post) && get_post_meta() && $post_status !== "pending" && is_sticky() | 106–108 | get_post_meta(), __(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters() |
$post instanceof && !get_post_meta() && is_sticky() | 106–111 | _x(), get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters() |
$post instanceof && get_post_meta() && $post_status !== "pending" && !is_sticky() | 106–108 | _x(), get_post_meta(), __(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters() |
$post instanceof && get_post_meta() && $post_status !== "pending" | 106–108 | _x(), get_post_meta(), __(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters() |
$post instanceof && get_post_meta() && $post_status !== "pending" | 106–108 | _x(), get_post_meta(), __(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && get_post_meta() && $post_status !== "pending" | 106–108 | _x(), get_post_meta(), __(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters() |
$post instanceof && get_post_meta() && $post_status !== "pending" && is_sticky() | 106–108 | _x(), get_post_meta(), __(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && get_post_meta() && $post_status !== "pending" && is_sticky() | 106–108 | _x(), get_post_meta(), __(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters() |
$post instanceof && get_post_meta() && $post_status !== "pending" && is_sticky() | 106–108 | _x(), get_post_meta(), __(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters() |
$post instanceof && empty($post) && is_sticky() | 107–111 | get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters() |
$post instanceof && is_sticky() | 107–109 | _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters() |
$post instanceof | 107–111 | _x(), get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters() |
$post instanceof && is_sticky() | 107–111 | _x(), get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters() |
$post instanceof && is_sticky() | 107–111 | _x(), get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && is_sticky() | 107–111 | _x(), get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" && !get_post_meta() | 108–111 | _x(), _x(), get_post_meta(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" && !get_post_meta() && is_sticky() | 108–111 | _x(), _x(), get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" && !get_post_meta() && is_sticky() | 108–111 | _x(), _x(), get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" && !get_post_meta() && is_sticky() | 108–111 | _x(), _x(), get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters() |
$post instanceof && empty($post) && $post_status !== "pending" | 109–111 | get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters() |
$post instanceof && empty($post) && $post_status !== "pending" && is_sticky() | 109–111 | get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters() |
$post instanceof && empty($post) && $post_status !== "pending" && is_sticky() | 109–111 | get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && empty($post) && $post_status !== "pending" && is_sticky() | 109–111 | get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters() |
$post instanceof && $post_status !== "pending" && !is_sticky() | 109–111 | _x(), get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters() |
$post instanceof && $post_status !== "pending" | 109–111 | _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters() |
$post instanceof && $post_status !== "pending" | 109–111 | _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && $post_status !== "pending" | 109–111 | _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters() |
$post instanceof && $post_status !== "pending" && is_sticky() | 109–111 | _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && $post_status !== "pending" && is_sticky() | 109–111 | _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters() |
$post instanceof && $post_status !== "pending" && is_sticky() | 109–111 | _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" && $post_status !== "pending" | 109 | _x(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" && $post_status !== "pending" && is_sticky() | 109 | _x(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" && $post_status !== "pending" && is_sticky() | 109 | _x(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" && $post_status !== "pending" && is_sticky() | 109 | _x(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" && !is_sticky() | 109–111 | _x(), _x(), get_post_meta(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" | 109–111 | _x(), _x(), get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" | 109–111 | _x(), _x(), get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" | 109–111 | _x(), _x(), get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" && is_sticky() | 109–111 | _x(), _x(), get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" && is_sticky() | 109–111 | _x(), _x(), get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" && is_sticky() | 109–111 | _x(), _x(), get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters() |
$post instanceof && get_post_meta() && is_sticky() | 110–114 | _x(), get_post_meta(), __(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending" && !is_sticky() | 111 | _x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending" && !is_sticky() | 111 | _x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending" && !is_sticky() | 111 | _x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending" | 111 | _x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending" | 111 | _x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending" | 111 | _x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending" && is_sticky() | 111 | _x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters() |
$post instanceof && empty($post) && get_post_meta() && $post_status !== "pending" && is_sticky() | 112–114 | get_post_meta(), __(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters() |
$post instanceof && get_post_meta() && $post_status !== "pending" | 112–114 | _x(), get_post_meta(), __(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters() |
$post instanceof && get_post_meta() && $post_status !== "pending" && is_sticky() | 112–114 | _x(), get_post_meta(), __(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters() |
$post instanceof && get_post_meta() && $post_status !== "pending" && is_sticky() | 112–114 | _x(), get_post_meta(), __(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && get_post_meta() && $post_status !== "pending" && is_sticky() | 112–114 | _x(), get_post_meta(), __(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters() |
$post instanceof && is_sticky() | 113–117 | _x(), get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" && !get_post_meta() && is_sticky() | 114–117 | _x(), _x(), get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters() |
$post instanceof && empty($post) && $post_status !== "pending" && is_sticky() | 115–117 | get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters() |
$post instanceof && $post_status !== "pending" | 115–117 | _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters() |
$post instanceof && $post_status !== "pending" && is_sticky() | 115–117 | _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters() |
$post instanceof && $post_status !== "pending" && is_sticky() | 115–117 | _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && $post_status !== "pending" && is_sticky() | 115–117 | _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" && $post_status !== "pending" && is_sticky() | 115 | _x(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" | 115–117 | _x(), _x(), get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" && is_sticky() | 115–117 | _x(), _x(), get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" && is_sticky() | 115–117 | _x(), _x(), get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" && is_sticky() | 115–117 | _x(), _x(), get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending" && !is_sticky() | 117 | _x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending" | 117 | _x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending" | 117 | _x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending" | 117 | _x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending" && is_sticky() | 117 | _x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending" && is_sticky() | 117 | _x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending" && is_sticky() | 117 | _x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters() |
$post instanceof && get_post_meta() && $post_status !== "pending" && is_sticky() | 118–120 | _x(), get_post_meta(), __(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters() |
$post instanceof && $post_status !== "pending" && is_sticky() | 121–123 | _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" && is_sticky() | 121–123 | _x(), _x(), get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending" | 123 | _x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending" && is_sticky() | 123 | _x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending" && is_sticky() | 123 | _x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending" && is_sticky() | 123 | _x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters() |
$post instanceof && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending" && is_sticky() | 129 | _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: 154 instructions, 49–129 executed per call, 18 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 2368 (+65 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 ( ! $post instanceof WP_Post ) { return $post_states; } $post_status = $_REQUEST['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 7.0.4 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.