wppaste
WordPress

get_post_states( WP_Post $post ): string[]

Since
5.3.0
Source
wp-admin/includes/template.php:2286
Retrieves an array of post states from a post.

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

Reads stored settings via get_option(), cached per request but not free on a cold cache.

Scaling
Constant

No loop in the body: the same number of instructions runs whatever you pass in.

Instructions
47–127

Executed per call on PHP 8.5, depending on the branch taken. The body compiles to 153.

Plugin surface
1 hook

Third-party callbacks on 'display_post_states' run inside this call, and their cost is not bounded by anything here.

Called by
4

4 places in core call this, so the cost is paid more often than your own code shows.

What it touches

  • optionoption read or writeget_option()called directly
  • hookthird-party callbacksapply_filters()called directly
  • cacheobject cachewp_cache_get()one call below get_post_states()
  • serializeserialisationmaybe_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.

WhenInstructionsCalls it makes
!isset($value) && empty($post) && !is_sticky()47–51is_sticky(), get_option(), get_option(), apply_filters()
!isset($value) && empty($post) && !is_sticky()53–57is_sticky(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && empty($post)53–57is_sticky(), _x(), get_option(), get_option(), apply_filters()
!isset($value) && !is_sticky()53–57_x(), is_sticky(), get_option(), get_option(), apply_filters()
!isset($value) && empty($post) && !get_post_meta() && !is_sticky()54–59get_post_meta(), is_sticky(), get_option(), get_option(), apply_filters()
!isset($value) && empty($post) && get_post_meta() && !is_sticky()58–62get_post_meta(), __(), is_sticky(), get_option(), get_option(), apply_filters()
!isset($value) && empty($post)59–63is_sticky(), _x(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && empty($post) && is_sticky()59–63is_sticky(), _x(), _x(), get_option(), get_option(), apply_filters()
!isset($value) && !is_sticky()59–63_x(), is_sticky(), get_option(), get_option(), _x(), apply_filters()
!isset($value)59–63_x(), is_sticky(), _x(), get_option(), get_option(), apply_filters()
!isset($value) && empty($post) && !get_post_meta() && !is_sticky()60–65get_post_meta(), is_sticky(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && empty($post) && !get_post_meta()60–65get_post_meta(), is_sticky(), _x(), get_option(), get_option(), apply_filters()
498 further outcomes, up to 127 instructions
!isset($value) && !get_post_meta() && !is_sticky()60–65_x(), get_post_meta(), is_sticky(), get_option(), get_option(), apply_filters()
!isset($value) && empty($post) && !is_sticky()61–65is_sticky(), get_option(), get_option(), get_option(), get_option(), apply_filters()
!isset($value) && empty($post) && !is_sticky()61–65get_post_meta(), _x(), is_sticky(), get_option(), get_option(), apply_filters()
!isset($value) && !is_sticky()61–63_x(), _x(), is_sticky(), get_option(), get_option(), apply_filters()
!isset($value) && empty($post) && get_post_meta() && !is_sticky()64–68get_post_meta(), __(), is_sticky(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && empty($post) && get_post_meta()64–68get_post_meta(), __(), is_sticky(), _x(), get_option(), get_option(), apply_filters()
!isset($value) && get_post_meta() && !is_sticky()64–68_x(), get_post_meta(), __(), is_sticky(), get_option(), get_option(), apply_filters()
!isset($value) && empty($post) && is_sticky()65–69is_sticky(), _x(), _x(), get_option(), get_option(), _x(), apply_filters()
!isset($value)65–69_x(), is_sticky(), _x(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && is_sticky()65–69_x(), is_sticky(), _x(), _x(), get_option(), get_option(), apply_filters()
!isset($value) && empty($post) && !get_post_meta()66–71get_post_meta(), is_sticky(), _x(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && empty($post) && !get_post_meta() && is_sticky()66–71get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), apply_filters()
!isset($value) && empty($post) && get_post_meta() && $post_status !== "pending" && !is_sticky()66–68get_post_meta(), __(), _x(), is_sticky(), get_option(), get_option(), apply_filters()
!isset($value) && !get_post_meta() && !is_sticky()66–71_x(), get_post_meta(), is_sticky(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && !get_post_meta()66–71_x(), get_post_meta(), is_sticky(), _x(), get_option(), get_option(), apply_filters()
!isset($value) && empty($post) && !is_sticky()67–71is_sticky(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && empty($post) && !is_sticky()67–71is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters()
!isset($value) && empty($post) && !is_sticky()67–71is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters()
!isset($value) && empty($post)67–71is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters()
!isset($value) && !is_sticky()67–71_x(), is_sticky(), get_option(), get_option(), get_option(), get_option(), apply_filters()
!isset($value) && empty($post) && !is_sticky()67–71get_post_meta(), _x(), is_sticky(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && empty($post)67–71get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), apply_filters()
!isset($value) && !is_sticky()67–69_x(), _x(), is_sticky(), get_option(), get_option(), _x(), apply_filters()
!isset($value)67–69_x(), _x(), is_sticky(), _x(), get_option(), get_option(), apply_filters()
!isset($value) && !is_sticky()67–71_x(), get_post_meta(), _x(), is_sticky(), get_option(), get_option(), apply_filters()
!isset($value) && empty($post) && !get_post_meta() && !is_sticky()68–73get_post_meta(), is_sticky(), get_option(), get_option(), get_option(), get_option(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private" && !get_post_meta() && !is_sticky()68–71_x(), _x(), get_post_meta(), is_sticky(), get_option(), get_option(), apply_filters()
!isset($value) && empty($post) && $post_status !== "pending" && !is_sticky()69–71get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private" && $post_status !== "pending" && !is_sticky()69_x(), _x(), _x(), is_sticky(), get_option(), get_option(), apply_filters()
!isset($value) && empty($post) && get_post_meta()70–74get_post_meta(), __(), is_sticky(), _x(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && empty($post) && get_post_meta() && is_sticky()70–74get_post_meta(), __(), is_sticky(), _x(), _x(), get_option(), get_option(), apply_filters()
!isset($value) && get_post_meta() && !is_sticky()70–74_x(), get_post_meta(), __(), is_sticky(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && get_post_meta()70–74_x(), get_post_meta(), __(), is_sticky(), _x(), get_option(), get_option(), apply_filters()
!isset($value) && is_sticky()71–75_x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && empty($post) && !get_post_meta() && is_sticky()72–77get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && empty($post) && get_post_meta() && !is_sticky()72–76get_post_meta(), __(), is_sticky(), get_option(), get_option(), get_option(), get_option(), apply_filters()
!isset($value) && empty($post) && get_post_meta() && $post_status !== "pending" && !is_sticky()72–74get_post_meta(), __(), _x(), is_sticky(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && empty($post) && get_post_meta() && $post_status !== "pending"72–74get_post_meta(), __(), _x(), is_sticky(), _x(), get_option(), get_option(), apply_filters()
!isset($value) && !get_post_meta()72–77_x(), get_post_meta(), is_sticky(), _x(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && !get_post_meta() && is_sticky()72–77_x(), get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), apply_filters()
!isset($value) && get_post_meta() && $post_status !== "pending" && !is_sticky()72–74_x(), get_post_meta(), __(), _x(), is_sticky(), get_option(), get_option(), apply_filters()
!isset($value) && empty($post) && !is_sticky()73–77is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters()
!isset($value) && empty($post) && !is_sticky()73–77is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && empty($post) && !is_sticky()73–77is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters()
!isset($value) && empty($post)73–77is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && empty($post)73–77is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters()
!isset($value) && empty($post)73–77is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters()
!isset($value) && empty($post) && is_sticky()73–77is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters()
!isset($value) && !is_sticky()73–77_x(), is_sticky(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && !is_sticky()73–77_x(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters()
!isset($value) && !is_sticky()73–77_x(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters()
!isset($value)73–77_x(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters()
!isset($value) && empty($post)73–77get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && empty($post) && is_sticky()73–77get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), apply_filters()
!isset($value)73–75_x(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && is_sticky()73–75_x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), apply_filters()
!isset($value) && !is_sticky()73–77_x(), get_post_meta(), _x(), is_sticky(), get_option(), get_option(), _x(), apply_filters()
!isset($value)73–77_x(), get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), apply_filters()
!isset($value) && empty($post) && !get_post_meta() && !is_sticky()74–79get_post_meta(), is_sticky(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && empty($post) && !get_post_meta() && !is_sticky()74–79get_post_meta(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters()
!isset($value) && empty($post) && !get_post_meta() && !is_sticky()74–79get_post_meta(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters()
!isset($value) && empty($post) && !get_post_meta()74–79get_post_meta(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters()
!isset($value) && !get_post_meta() && !is_sticky()74–79_x(), get_post_meta(), is_sticky(), get_option(), get_option(), get_option(), get_option(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private" && !get_post_meta() && !is_sticky()74–77_x(), _x(), get_post_meta(), is_sticky(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private" && !get_post_meta()74–77_x(), _x(), get_post_meta(), is_sticky(), _x(), get_option(), get_option(), apply_filters()
!isset($value) && empty($post) && !is_sticky()75–79get_post_meta(), _x(), is_sticky(), get_option(), get_option(), get_option(), get_option(), apply_filters()
!isset($value) && empty($post) && $post_status !== "pending" && !is_sticky()75–77get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && empty($post) && $post_status !== "pending"75–77get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), apply_filters()
!isset($value) && !is_sticky()75–77_x(), _x(), is_sticky(), get_option(), get_option(), get_option(), get_option(), apply_filters()
!isset($value) && $post_status !== "pending" && !is_sticky()75–77_x(), get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private" && $post_status !== "pending" && !is_sticky()75_x(), _x(), _x(), is_sticky(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private" && $post_status !== "pending"75_x(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private" && !is_sticky()75–77_x(), _x(), get_post_meta(), _x(), is_sticky(), get_option(), get_option(), apply_filters()
!isset($value) && empty($post) && get_post_meta() && is_sticky()76–80get_post_meta(), __(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && get_post_meta()76–80_x(), get_post_meta(), __(), is_sticky(), _x(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && get_post_meta() && is_sticky()76–80_x(), get_post_meta(), __(), is_sticky(), _x(), _x(), get_option(), get_option(), apply_filters()
!isset($value) && empty($post) && get_post_meta() && !is_sticky()78–82get_post_meta(), __(), is_sticky(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && empty($post) && get_post_meta() && !is_sticky()78–82get_post_meta(), __(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters()
!isset($value) && empty($post) && get_post_meta() && !is_sticky()78–82get_post_meta(), __(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters()
!isset($value) && empty($post) && get_post_meta()78–82get_post_meta(), __(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters()
!isset($value) && empty($post) && get_post_meta() && $post_status !== "pending"78–80get_post_meta(), __(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && empty($post) && get_post_meta() && $post_status !== "pending" && is_sticky()78–80get_post_meta(), __(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), apply_filters()
!isset($value) && !get_post_meta() && is_sticky()78–83_x(), get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && get_post_meta() && !is_sticky()78–82_x(), get_post_meta(), __(), is_sticky(), get_option(), get_option(), get_option(), get_option(), apply_filters()
!isset($value) && get_post_meta() && $post_status !== "pending" && !is_sticky()78–80_x(), get_post_meta(), __(), _x(), is_sticky(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && get_post_meta() && $post_status !== "pending"78–80_x(), get_post_meta(), __(), _x(), is_sticky(), _x(), get_option(), get_option(), apply_filters()
!isset($value) && empty($post) && !is_sticky()79–83is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters()
!isset($value) && empty($post)79–83is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters()
!isset($value) && empty($post)79–83is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && empty($post)79–83is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters()
!isset($value) && empty($post) && is_sticky()79–83is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && empty($post) && is_sticky()79–83is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters()
!isset($value) && empty($post) && is_sticky()79–83is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters()
!isset($value) && !is_sticky()79–83_x(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters()
!isset($value) && !is_sticky()79–83_x(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && !is_sticky()79–83_x(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters()
!isset($value)79–83_x(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters()
!isset($value)79–83_x(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters()
!isset($value)79–83_x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters()
!isset($value) && is_sticky()79–83_x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters()
!isset($value) && empty($post) && is_sticky()79–83get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && is_sticky()79–81_x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), apply_filters()
!isset($value)79–83_x(), get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && is_sticky()79–83_x(), get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), apply_filters()
!isset($value) && empty($post) && !get_post_meta() && !is_sticky()80–85get_post_meta(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters()
!isset($value) && empty($post) && !get_post_meta() && !is_sticky()80–85get_post_meta(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && empty($post) && !get_post_meta() && !is_sticky()80–85get_post_meta(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters()
!isset($value) && empty($post) && !get_post_meta()80–85get_post_meta(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && empty($post) && !get_post_meta()80–85get_post_meta(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters()
!isset($value) && empty($post) && !get_post_meta()80–85get_post_meta(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters()
!isset($value) && empty($post) && !get_post_meta() && is_sticky()80–85get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters()
!isset($value) && empty($post) && get_post_meta() && $post_status !== "pending" && !is_sticky()80–82get_post_meta(), __(), _x(), is_sticky(), get_option(), get_option(), get_option(), get_option(), apply_filters()
!isset($value) && !get_post_meta() && !is_sticky()80–85_x(), get_post_meta(), is_sticky(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && !get_post_meta() && !is_sticky()80–85_x(), get_post_meta(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters()
!isset($value) && !get_post_meta() && !is_sticky()80–85_x(), get_post_meta(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters()
!isset($value) && !get_post_meta()80–85_x(), get_post_meta(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private" && !get_post_meta()80–83_x(), _x(), get_post_meta(), is_sticky(), _x(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private" && !get_post_meta() && is_sticky()80–83_x(), _x(), get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), apply_filters()
!isset($value) && empty($post) && !is_sticky()81–85get_post_meta(), _x(), is_sticky(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && empty($post) && !is_sticky()81–85get_post_meta(), _x(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters()
!isset($value) && empty($post) && !is_sticky()81–85get_post_meta(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters()
!isset($value) && empty($post)81–85get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters()
!isset($value) && empty($post) && $post_status !== "pending"81–83get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && empty($post) && $post_status !== "pending" && is_sticky()81–83get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), apply_filters()
!isset($value) && !is_sticky()81–83_x(), _x(), is_sticky(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && !is_sticky()81–83_x(), _x(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters()
!isset($value) && !is_sticky()81–83_x(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters()
!isset($value)81–83_x(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters()
!isset($value) && !is_sticky()81–85_x(), get_post_meta(), _x(), is_sticky(), get_option(), get_option(), get_option(), get_option(), apply_filters()
!isset($value) && $post_status !== "pending" && !is_sticky()81–83_x(), get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && $post_status !== "pending"81–83_x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private" && $post_status !== "pending"81_x(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private" && $post_status !== "pending" && is_sticky()81_x(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private" && !is_sticky()81–83_x(), _x(), get_post_meta(), _x(), is_sticky(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private"81–83_x(), _x(), get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private" && !get_post_meta() && !is_sticky()82–85_x(), _x(), get_post_meta(), is_sticky(), get_option(), get_option(), get_option(), get_option(), apply_filters()
!isset($value) && get_post_meta() && is_sticky()82–86_x(), get_post_meta(), __(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && empty($post) && $post_status !== "pending" && !is_sticky()83–85get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), get_option(), get_option(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private" && $post_status !== "pending" && !is_sticky()83_x(), _x(), _x(), is_sticky(), get_option(), get_option(), get_option(), get_option(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending" && !is_sticky()83_x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), apply_filters()
!isset($value) && empty($post) && get_post_meta() && !is_sticky()84–88get_post_meta(), __(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters()
!isset($value) && empty($post) && get_post_meta() && !is_sticky()84–88get_post_meta(), __(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && empty($post) && get_post_meta() && !is_sticky()84–88get_post_meta(), __(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters()
!isset($value) && empty($post) && get_post_meta()84–88get_post_meta(), __(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && empty($post) && get_post_meta()84–88get_post_meta(), __(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters()
!isset($value) && empty($post) && get_post_meta()84–88get_post_meta(), __(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters()
!isset($value) && empty($post) && get_post_meta() && is_sticky()84–88get_post_meta(), __(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters()
!isset($value) && empty($post) && get_post_meta() && $post_status !== "pending" && is_sticky()84–86get_post_meta(), __(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && get_post_meta() && !is_sticky()84–88_x(), get_post_meta(), __(), is_sticky(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && get_post_meta() && !is_sticky()84–88_x(), get_post_meta(), __(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters()
!isset($value) && get_post_meta() && !is_sticky()84–88_x(), get_post_meta(), __(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters()
!isset($value) && get_post_meta()84–88_x(), get_post_meta(), __(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters()
!isset($value) && get_post_meta() && $post_status !== "pending"84–86_x(), get_post_meta(), __(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && get_post_meta() && $post_status !== "pending" && is_sticky()84–86_x(), get_post_meta(), __(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), apply_filters()
!isset($value) && empty($post)85–89is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters()
!isset($value) && empty($post) && is_sticky()85–89is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters()
!isset($value) && empty($post) && is_sticky()85–89is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && empty($post) && is_sticky()85–89is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters()
!isset($value) && !is_sticky()85–89_x(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters()
!isset($value)85–89_x(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters()
!isset($value)85–89_x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters()
!isset($value)85–89_x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters()
!isset($value) && is_sticky()85–89_x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && is_sticky()85–89_x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters()
!isset($value) && is_sticky()85–89_x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters()
!isset($value) && is_sticky()85–89_x(), get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && empty($post) && !get_post_meta() && !is_sticky()86–91get_post_meta(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters()
!isset($value) && empty($post) && !get_post_meta()86–91get_post_meta(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters()
!isset($value) && empty($post) && !get_post_meta()86–91get_post_meta(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && empty($post) && !get_post_meta()86–91get_post_meta(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters()
!isset($value) && empty($post) && !get_post_meta() && is_sticky()86–91get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && empty($post) && !get_post_meta() && is_sticky()86–91get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters()
!isset($value) && empty($post) && !get_post_meta() && is_sticky()86–91get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters()
!isset($value) && empty($post) && get_post_meta() && $post_status !== "pending" && !is_sticky()86–88get_post_meta(), __(), _x(), is_sticky(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && empty($post) && get_post_meta() && $post_status !== "pending" && !is_sticky()86–88get_post_meta(), __(), _x(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters()
!isset($value) && empty($post) && get_post_meta() && $post_status !== "pending" && !is_sticky()86–88get_post_meta(), __(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters()
!isset($value) && empty($post) && get_post_meta() && $post_status !== "pending"86–88get_post_meta(), __(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters()
!isset($value) && !get_post_meta() && !is_sticky()86–91_x(), get_post_meta(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters()
!isset($value) && !get_post_meta() && !is_sticky()86–91_x(), get_post_meta(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && !get_post_meta() && !is_sticky()86–91_x(), get_post_meta(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters()
!isset($value) && !get_post_meta()86–91_x(), get_post_meta(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && !get_post_meta()86–91_x(), get_post_meta(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters()
!isset($value) && !get_post_meta()86–91_x(), get_post_meta(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters()
!isset($value) && !get_post_meta() && is_sticky()86–91_x(), get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters()
!isset($value) && get_post_meta() && $post_status !== "pending" && !is_sticky()86–88_x(), get_post_meta(), __(), _x(), is_sticky(), get_option(), get_option(), get_option(), get_option(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private" && !get_post_meta() && is_sticky()86–89_x(), _x(), get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && empty($post) && !is_sticky()87–91get_post_meta(), _x(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters()
!isset($value) && empty($post) && !is_sticky()87–91get_post_meta(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && empty($post) && !is_sticky()87–91get_post_meta(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters()
!isset($value) && empty($post)87–91get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && empty($post)87–91get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters()
!isset($value) && empty($post)87–91get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters()
!isset($value) && empty($post) && is_sticky()87–91get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters()
!isset($value) && empty($post) && $post_status !== "pending" && is_sticky()87–89get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && !is_sticky()87–89_x(), _x(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters()
!isset($value) && !is_sticky()87–89_x(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && !is_sticky()87–89_x(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters()
!isset($value)87–89_x(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters()
!isset($value)87–89_x(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters()
!isset($value)87–89_x(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters()
!isset($value) && is_sticky()87–89_x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters()
!isset($value) && !is_sticky()87–91_x(), get_post_meta(), _x(), is_sticky(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && !is_sticky()87–91_x(), get_post_meta(), _x(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters()
!isset($value) && !is_sticky()87–91_x(), get_post_meta(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters()
!isset($value)87–91_x(), get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters()
!isset($value) && $post_status !== "pending"87–89_x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && $post_status !== "pending" && is_sticky()87–89_x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private" && $post_status !== "pending" && is_sticky()87_x(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private"87–89_x(), _x(), get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private" && is_sticky()87–89_x(), _x(), get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private" && !get_post_meta() && !is_sticky()88–91_x(), _x(), get_post_meta(), is_sticky(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private" && !get_post_meta() && !is_sticky()88–91_x(), _x(), get_post_meta(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private" && !get_post_meta() && !is_sticky()88–91_x(), _x(), get_post_meta(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private" && !get_post_meta()88–91_x(), _x(), get_post_meta(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters()
!isset($value) && empty($post) && $post_status !== "pending" && !is_sticky()89–91get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && empty($post) && $post_status !== "pending" && !is_sticky()89–91get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters()
!isset($value) && empty($post) && $post_status !== "pending" && !is_sticky()89–91get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters()
!isset($value) && empty($post) && $post_status !== "pending"89–91get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters()
!isset($value) && $post_status !== "pending" && !is_sticky()89–91_x(), get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), get_option(), get_option(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private" && $post_status !== "pending" && !is_sticky()89_x(), _x(), _x(), is_sticky(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private" && $post_status !== "pending" && !is_sticky()89_x(), _x(), _x(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private" && $post_status !== "pending" && !is_sticky()89_x(), _x(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private" && $post_status !== "pending"89_x(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private" && !is_sticky()89–91_x(), _x(), get_post_meta(), _x(), is_sticky(), get_option(), get_option(), get_option(), get_option(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending" && !is_sticky()89_x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending"89_x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), apply_filters()
!isset($value) && empty($post) && get_post_meta() && !is_sticky()90–94get_post_meta(), __(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters()
!isset($value) && empty($post) && get_post_meta()90–94get_post_meta(), __(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters()
!isset($value) && empty($post) && get_post_meta()90–94get_post_meta(), __(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && empty($post) && get_post_meta()90–94get_post_meta(), __(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters()
!isset($value) && empty($post) && get_post_meta() && is_sticky()90–94get_post_meta(), __(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && empty($post) && get_post_meta() && is_sticky()90–94get_post_meta(), __(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters()
!isset($value) && empty($post) && get_post_meta() && is_sticky()90–94get_post_meta(), __(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters()
!isset($value) && get_post_meta() && !is_sticky()90–94_x(), get_post_meta(), __(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters()
!isset($value) && get_post_meta() && !is_sticky()90–94_x(), get_post_meta(), __(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && get_post_meta() && !is_sticky()90–94_x(), get_post_meta(), __(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters()
!isset($value) && get_post_meta()90–94_x(), get_post_meta(), __(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && get_post_meta()90–94_x(), get_post_meta(), __(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters()
!isset($value) && get_post_meta()90–94_x(), get_post_meta(), __(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters()
!isset($value) && get_post_meta() && is_sticky()90–94_x(), get_post_meta(), __(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters()
!isset($value) && get_post_meta() && $post_status !== "pending" && is_sticky()90–92_x(), get_post_meta(), __(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && empty($post) && is_sticky()91–95is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters()
!isset($value)91–95_x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters()
!isset($value) && is_sticky()91–95_x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters()
!isset($value) && is_sticky()91–95_x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && is_sticky()91–95_x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters()
!isset($value) && empty($post) && !get_post_meta()92–97get_post_meta(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters()
!isset($value) && empty($post) && !get_post_meta() && is_sticky()92–97get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters()
!isset($value) && empty($post) && !get_post_meta() && is_sticky()92–97get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && empty($post) && !get_post_meta() && is_sticky()92–97get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters()
!isset($value) && empty($post) && get_post_meta() && $post_status !== "pending" && !is_sticky()92–94get_post_meta(), __(), _x(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters()
!isset($value) && empty($post) && get_post_meta() && $post_status !== "pending" && !is_sticky()92–94get_post_meta(), __(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && empty($post) && get_post_meta() && $post_status !== "pending" && !is_sticky()92–94get_post_meta(), __(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters()
!isset($value) && empty($post) && get_post_meta() && $post_status !== "pending"92–94get_post_meta(), __(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && empty($post) && get_post_meta() && $post_status !== "pending"92–94get_post_meta(), __(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters()
!isset($value) && empty($post) && get_post_meta() && $post_status !== "pending"92–94get_post_meta(), __(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters()
!isset($value) && empty($post) && get_post_meta() && $post_status !== "pending" && is_sticky()92–94get_post_meta(), __(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters()
!isset($value) && !get_post_meta() && !is_sticky()92–97_x(), get_post_meta(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters()
!isset($value) && !get_post_meta()92–97_x(), get_post_meta(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters()
!isset($value) && !get_post_meta()92–97_x(), get_post_meta(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && !get_post_meta()92–97_x(), get_post_meta(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters()
!isset($value) && !get_post_meta() && is_sticky()92–97_x(), get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && !get_post_meta() && is_sticky()92–97_x(), get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters()
!isset($value) && !get_post_meta() && is_sticky()92–97_x(), get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters()
!isset($value) && get_post_meta() && $post_status !== "pending" && !is_sticky()92–94_x(), get_post_meta(), __(), _x(), is_sticky(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && get_post_meta() && $post_status !== "pending" && !is_sticky()92–94_x(), get_post_meta(), __(), _x(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters()
!isset($value) && get_post_meta() && $post_status !== "pending" && !is_sticky()92–94_x(), get_post_meta(), __(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters()
!isset($value) && get_post_meta() && $post_status !== "pending"92–94_x(), get_post_meta(), __(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters()
!isset($value) && empty($post) && !is_sticky()93–97get_post_meta(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters()
!isset($value) && empty($post)93–97get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters()
!isset($value) && empty($post)93–97get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && empty($post)93–97get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters()
!isset($value) && empty($post) && is_sticky()93–97get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && empty($post) && is_sticky()93–97get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters()
!isset($value) && empty($post) && is_sticky()93–97get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters()
!isset($value) && !is_sticky()93–95_x(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters()
!isset($value)93–95_x(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters()
!isset($value)93–95_x(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters()
!isset($value)93–95_x(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters()
!isset($value) && is_sticky()93–95_x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && is_sticky()93–95_x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters()
!isset($value) && is_sticky()93–95_x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters()
!isset($value) && !is_sticky()93–97_x(), get_post_meta(), _x(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters()
!isset($value) && !is_sticky()93–97_x(), get_post_meta(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && !is_sticky()93–97_x(), get_post_meta(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters()
!isset($value)93–97_x(), get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters()
!isset($value)93–97_x(), get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters()
!isset($value)93–97_x(), get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters()
!isset($value) && is_sticky()93–97_x(), get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters()
!isset($value) && $post_status !== "pending" && is_sticky()93–95_x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private" && is_sticky()93–95_x(), _x(), get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private" && !get_post_meta() && !is_sticky()94–97_x(), _x(), get_post_meta(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private" && !get_post_meta() && !is_sticky()94–97_x(), _x(), get_post_meta(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private" && !get_post_meta() && !is_sticky()94–97_x(), _x(), get_post_meta(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private" && !get_post_meta()94–97_x(), _x(), get_post_meta(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private" && !get_post_meta()94–97_x(), _x(), get_post_meta(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private" && !get_post_meta()94–97_x(), _x(), get_post_meta(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private" && !get_post_meta() && is_sticky()94–97_x(), _x(), get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters()
!isset($value) && empty($post) && $post_status !== "pending" && !is_sticky()95–97get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters()
!isset($value) && empty($post) && $post_status !== "pending" && !is_sticky()95–97get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && empty($post) && $post_status !== "pending" && !is_sticky()95–97get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters()
!isset($value) && empty($post) && $post_status !== "pending"95–97get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && empty($post) && $post_status !== "pending"95–97get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters()
!isset($value) && empty($post) && $post_status !== "pending"95–97get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters()
!isset($value) && empty($post) && $post_status !== "pending" && is_sticky()95–97get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters()
!isset($value) && $post_status !== "pending" && !is_sticky()95–97_x(), get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && $post_status !== "pending" && !is_sticky()95–97_x(), get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters()
!isset($value) && $post_status !== "pending" && !is_sticky()95–97_x(), get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters()
!isset($value) && $post_status !== "pending"95–97_x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private" && $post_status !== "pending" && !is_sticky()95_x(), _x(), _x(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private" && $post_status !== "pending" && !is_sticky()95_x(), _x(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private" && $post_status !== "pending" && !is_sticky()95_x(), _x(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private" && $post_status !== "pending"95_x(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private" && $post_status !== "pending"95_x(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private" && $post_status !== "pending"95_x(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private" && $post_status !== "pending" && is_sticky()95_x(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private" && !is_sticky()95–97_x(), _x(), get_post_meta(), _x(), is_sticky(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private" && !is_sticky()95–97_x(), _x(), get_post_meta(), _x(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private" && !is_sticky()95–97_x(), _x(), get_post_meta(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private"95–97_x(), _x(), get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending"95_x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending" && is_sticky()95_x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), apply_filters()
!isset($value) && empty($post) && get_post_meta()96–100get_post_meta(), __(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters()
!isset($value) && empty($post) && get_post_meta() && is_sticky()96–100get_post_meta(), __(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters()
!isset($value) && empty($post) && get_post_meta() && is_sticky()96–100get_post_meta(), __(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && empty($post) && get_post_meta() && is_sticky()96–100get_post_meta(), __(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters()
!isset($value) && get_post_meta() && !is_sticky()96–100_x(), get_post_meta(), __(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters()
!isset($value) && get_post_meta()96–100_x(), get_post_meta(), __(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters()
!isset($value) && get_post_meta()96–100_x(), get_post_meta(), __(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && get_post_meta()96–100_x(), get_post_meta(), __(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters()
!isset($value) && get_post_meta() && is_sticky()96–100_x(), get_post_meta(), __(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && get_post_meta() && is_sticky()96–100_x(), get_post_meta(), __(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters()
!isset($value) && get_post_meta() && is_sticky()96–100_x(), get_post_meta(), __(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending" && !is_sticky()97_x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), get_option(), get_option(), apply_filters()
!isset($value) && is_sticky()97–101_x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters()
!isset($value) && empty($post) && !get_post_meta() && is_sticky()98–103get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters()
!isset($value) && empty($post) && get_post_meta() && $post_status !== "pending" && !is_sticky()98–100get_post_meta(), __(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters()
!isset($value) && empty($post) && get_post_meta() && $post_status !== "pending"98–100get_post_meta(), __(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters()
!isset($value) && empty($post) && get_post_meta() && $post_status !== "pending"98–100get_post_meta(), __(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && empty($post) && get_post_meta() && $post_status !== "pending"98–100get_post_meta(), __(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters()
!isset($value) && empty($post) && get_post_meta() && $post_status !== "pending" && is_sticky()98–100get_post_meta(), __(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && empty($post) && get_post_meta() && $post_status !== "pending" && is_sticky()98–100get_post_meta(), __(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters()
!isset($value) && empty($post) && get_post_meta() && $post_status !== "pending" && is_sticky()98–100get_post_meta(), __(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters()
!isset($value) && !get_post_meta()98–103_x(), get_post_meta(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters()
!isset($value) && !get_post_meta() && is_sticky()98–103_x(), get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters()
!isset($value) && !get_post_meta() && is_sticky()98–103_x(), get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && !get_post_meta() && is_sticky()98–103_x(), get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters()
!isset($value) && get_post_meta() && $post_status !== "pending" && !is_sticky()98–100_x(), get_post_meta(), __(), _x(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters()
!isset($value) && get_post_meta() && $post_status !== "pending" && !is_sticky()98–100_x(), get_post_meta(), __(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && get_post_meta() && $post_status !== "pending" && !is_sticky()98–100_x(), get_post_meta(), __(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters()
!isset($value) && get_post_meta() && $post_status !== "pending"98–100_x(), get_post_meta(), __(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && get_post_meta() && $post_status !== "pending"98–100_x(), get_post_meta(), __(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters()
!isset($value) && get_post_meta() && $post_status !== "pending"98–100_x(), get_post_meta(), __(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters()
!isset($value) && get_post_meta() && $post_status !== "pending" && is_sticky()98–100_x(), get_post_meta(), __(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters()
!isset($value) && empty($post)99–103get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters()
!isset($value) && empty($post) && is_sticky()99–103get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters()
!isset($value) && empty($post) && is_sticky()99–103get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && empty($post) && is_sticky()99–103get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters()
!isset($value)99–101_x(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters()
!isset($value) && is_sticky()99–101_x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters()
!isset($value) && is_sticky()99–101_x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && is_sticky()99–101_x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters()
!isset($value) && !is_sticky()99–103_x(), get_post_meta(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters()
!isset($value)99–103_x(), get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters()
!isset($value)99–103_x(), get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters()
!isset($value)99–103_x(), get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters()
!isset($value) && is_sticky()99–103_x(), get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && is_sticky()99–103_x(), get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters()
!isset($value) && is_sticky()99–103_x(), get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private" && !get_post_meta() && !is_sticky()100–103_x(), _x(), get_post_meta(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private" && !get_post_meta()100–103_x(), _x(), get_post_meta(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private" && !get_post_meta()100–103_x(), _x(), get_post_meta(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private" && !get_post_meta()100–103_x(), _x(), get_post_meta(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private" && !get_post_meta() && is_sticky()100–103_x(), _x(), get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private" && !get_post_meta() && is_sticky()100–103_x(), _x(), get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private" && !get_post_meta() && is_sticky()100–103_x(), _x(), get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters()
!isset($value) && empty($post) && $post_status !== "pending" && !is_sticky()101–103get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters()
!isset($value) && empty($post) && $post_status !== "pending"101–103get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters()
!isset($value) && empty($post) && $post_status !== "pending"101–103get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && empty($post) && $post_status !== "pending"101–103get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters()
!isset($value) && empty($post) && $post_status !== "pending" && is_sticky()101–103get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && empty($post) && $post_status !== "pending" && is_sticky()101–103get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters()
!isset($value) && empty($post) && $post_status !== "pending" && is_sticky()101–103get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters()
!isset($value) && $post_status !== "pending" && !is_sticky()101–103_x(), get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters()
!isset($value) && $post_status !== "pending" && !is_sticky()101–103_x(), get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && $post_status !== "pending" && !is_sticky()101–103_x(), get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters()
!isset($value) && $post_status !== "pending"101–103_x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && $post_status !== "pending"101–103_x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters()
!isset($value) && $post_status !== "pending"101–103_x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters()
!isset($value) && $post_status !== "pending" && is_sticky()101–103_x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private" && $post_status !== "pending" && !is_sticky()101_x(), _x(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private" && $post_status !== "pending"101_x(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private" && $post_status !== "pending"101_x(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private" && $post_status !== "pending"101_x(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private" && $post_status !== "pending" && is_sticky()101_x(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private" && $post_status !== "pending" && is_sticky()101_x(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private" && $post_status !== "pending" && is_sticky()101_x(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private" && !is_sticky()101–103_x(), _x(), get_post_meta(), _x(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private" && !is_sticky()101–103_x(), _x(), get_post_meta(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private" && !is_sticky()101–103_x(), _x(), get_post_meta(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private"101–103_x(), _x(), get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private"101–103_x(), _x(), get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private"101–103_x(), _x(), get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private" && is_sticky()101–103_x(), _x(), get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending" && is_sticky()101_x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && empty($post) && get_post_meta() && is_sticky()102–106get_post_meta(), __(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters()
!isset($value) && get_post_meta()102–106_x(), get_post_meta(), __(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters()
!isset($value) && get_post_meta() && is_sticky()102–106_x(), get_post_meta(), __(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters()
!isset($value) && get_post_meta() && is_sticky()102–106_x(), get_post_meta(), __(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && get_post_meta() && is_sticky()102–106_x(), get_post_meta(), __(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending" && !is_sticky()103_x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending" && !is_sticky()103_x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending" && !is_sticky()103_x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending"103_x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters()
!isset($value) && empty($post) && get_post_meta() && $post_status !== "pending"104–106get_post_meta(), __(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters()
!isset($value) && empty($post) && get_post_meta() && $post_status !== "pending" && is_sticky()104–106get_post_meta(), __(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters()
!isset($value) && empty($post) && get_post_meta() && $post_status !== "pending" && is_sticky()104–106get_post_meta(), __(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && empty($post) && get_post_meta() && $post_status !== "pending" && is_sticky()104–106get_post_meta(), __(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters()
!isset($value) && !get_post_meta() && is_sticky()104–109_x(), get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters()
!isset($value) && get_post_meta() && $post_status !== "pending" && !is_sticky()104–106_x(), get_post_meta(), __(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters()
!isset($value) && get_post_meta() && $post_status !== "pending"104–106_x(), get_post_meta(), __(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters()
!isset($value) && get_post_meta() && $post_status !== "pending"104–106_x(), get_post_meta(), __(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && get_post_meta() && $post_status !== "pending"104–106_x(), get_post_meta(), __(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters()
!isset($value) && get_post_meta() && $post_status !== "pending" && is_sticky()104–106_x(), get_post_meta(), __(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && get_post_meta() && $post_status !== "pending" && is_sticky()104–106_x(), get_post_meta(), __(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters()
!isset($value) && get_post_meta() && $post_status !== "pending" && is_sticky()104–106_x(), get_post_meta(), __(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters()
!isset($value) && empty($post) && is_sticky()105–109get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters()
!isset($value) && is_sticky()105–107_x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters()
!isset($value)105–109_x(), get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters()
!isset($value) && is_sticky()105–109_x(), get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters()
!isset($value) && is_sticky()105–109_x(), get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && is_sticky()105–109_x(), get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private" && !get_post_meta()106–109_x(), _x(), get_post_meta(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private" && !get_post_meta() && is_sticky()106–109_x(), _x(), get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private" && !get_post_meta() && is_sticky()106–109_x(), _x(), get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private" && !get_post_meta() && is_sticky()106–109_x(), _x(), get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters()
!isset($value) && empty($post) && $post_status !== "pending"107–109get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters()
!isset($value) && empty($post) && $post_status !== "pending" && is_sticky()107–109get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters()
!isset($value) && empty($post) && $post_status !== "pending" && is_sticky()107–109get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && empty($post) && $post_status !== "pending" && is_sticky()107–109get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters()
!isset($value) && $post_status !== "pending" && !is_sticky()107–109_x(), get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters()
!isset($value) && $post_status !== "pending"107–109_x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters()
!isset($value) && $post_status !== "pending"107–109_x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && $post_status !== "pending"107–109_x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters()
!isset($value) && $post_status !== "pending" && is_sticky()107–109_x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && $post_status !== "pending" && is_sticky()107–109_x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters()
!isset($value) && $post_status !== "pending" && is_sticky()107–109_x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private" && $post_status !== "pending"107_x(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private" && $post_status !== "pending" && is_sticky()107_x(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private" && $post_status !== "pending" && is_sticky()107_x(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private" && $post_status !== "pending" && is_sticky()107_x(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private" && !is_sticky()107–109_x(), _x(), get_post_meta(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private"107–109_x(), _x(), get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private"107–109_x(), _x(), get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private"107–109_x(), _x(), get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private" && is_sticky()107–109_x(), _x(), get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private" && is_sticky()107–109_x(), _x(), get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private" && is_sticky()107–109_x(), _x(), get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters()
!isset($value) && get_post_meta() && is_sticky()108–112_x(), get_post_meta(), __(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending" && !is_sticky()109_x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending" && !is_sticky()109_x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending" && !is_sticky()109_x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending"109_x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending"109_x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending"109_x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending" && is_sticky()109_x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters()
!isset($value) && empty($post) && get_post_meta() && $post_status !== "pending" && is_sticky()110–112get_post_meta(), __(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters()
!isset($value) && get_post_meta() && $post_status !== "pending"110–112_x(), get_post_meta(), __(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters()
!isset($value) && get_post_meta() && $post_status !== "pending" && is_sticky()110–112_x(), get_post_meta(), __(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters()
!isset($value) && get_post_meta() && $post_status !== "pending" && is_sticky()110–112_x(), get_post_meta(), __(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && get_post_meta() && $post_status !== "pending" && is_sticky()110–112_x(), get_post_meta(), __(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters()
!isset($value) && is_sticky()111–115_x(), get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private" && !get_post_meta() && is_sticky()112–115_x(), _x(), get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters()
!isset($value) && empty($post) && $post_status !== "pending" && is_sticky()113–115get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters()
!isset($value) && $post_status !== "pending"113–115_x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters()
!isset($value) && $post_status !== "pending" && is_sticky()113–115_x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters()
!isset($value) && $post_status !== "pending" && is_sticky()113–115_x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && $post_status !== "pending" && is_sticky()113–115_x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private" && $post_status !== "pending" && is_sticky()113_x(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private"113–115_x(), _x(), get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private" && is_sticky()113–115_x(), _x(), get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private" && is_sticky()113–115_x(), _x(), get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private" && is_sticky()113–115_x(), _x(), get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending" && !is_sticky()115_x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending"115_x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending"115_x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending"115_x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending" && is_sticky()115_x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending" && is_sticky()115_x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending" && is_sticky()115_x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters()
!isset($value) && get_post_meta() && $post_status !== "pending" && is_sticky()116–118_x(), get_post_meta(), __(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters()
!isset($value) && $post_status !== "pending" && is_sticky()119–121_x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private" && is_sticky()119–121_x(), _x(), get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending"121_x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending" && is_sticky()121_x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending" && is_sticky()121_x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending" && is_sticky()121_x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters()
!isset($value) && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending" && is_sticky()127_x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters()

This body has more branch combinations than are worth enumerating, so the table covers the outcomes found first rather than every one that exists.

Across PHP versions

Compiles the same on PHP 7.4, 8.1, 8.2, 8.3, 8.4, 8.5 and 8.6-dev: 153 instructions, 47–127 executed per call, 17 branches. The work does not change between versions.

An instruction is not a fixed amount of time, so a matching count is not necessarily the same speed; what it rules out is a difference in the work itself.

Hooks and filters fired · 1

One hook fires while get_post_states() runs, in this order:

  1. apply_filters( display_post_states )filterline 2351 (+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

Source code

function get_post_states( $post ) {	$post_states = array(); 	if ( isset( $_REQUEST['post_status'] ) ) {		$post_status = $_REQUEST['post_status'];	} else {		$post_status = '';	} 	if ( ! empty( $post->post_password ) ) {		$post_states['protected'] = _x( 'Password protected', 'post status' );	} 	if ( 'private' === $post->post_status && 'private' !== $post_status ) {		$post_states['private'] = _x( 'Private', 'post status' );	} 	if ( 'draft' === $post->post_status ) {		if ( get_post_meta( $post->ID, '_customize_changeset_uuid', true ) ) {			$post_states[] = __( 'Customization Draft' );		} elseif ( 'draft' !== $post_status ) {			$post_states['draft'] = _x( 'Draft', 'post status' );		}	} elseif ( 'trash' === $post->post_status && get_post_meta( $post->ID, '_customize_changeset_uuid', true ) ) {		$post_states[] = _x( 'Customization Draft', 'post status' );	} 	if ( 'pending' === $post->post_status && 'pending' !== $post_status ) {		$post_states['pending'] = _x( 'Pending', 'post status' );	} 	if ( is_sticky( $post->ID ) ) {		$post_states['sticky'] = _x( 'Sticky', 'post status' );	} 	if ( 'future' === $post->post_status ) {		$post_states['scheduled'] = _x( 'Scheduled', 'post status' );	} 	if ( 'page' === get_option( 'show_on_front' ) ) {		if ( (int) get_option( 'page_on_front' ) === $post->ID ) {			$post_states['page_on_front'] = _x( 'Front Page', 'page label' );		} 		if ( (int) get_option( 'page_for_posts' ) === $post->ID ) {			$post_states['page_for_posts'] = _x( 'Posts Page', 'page label' );		}	} 	if ( (int) get_option( 'wp_page_for_privacy_policy' ) === $post->ID ) {		$post_states['page_for_privacy_policy'] = _x( 'Privacy Policy Page', 'page label' );	} 	/**	 * Filters the default post display states used in the posts list table.	 *	 * @since 2.8.0	 * @since 3.6.0 Added the `$post` parameter.	 * @since 5.5.0 Also applied in the Customizer context. If any admin functions	 *              are used within the filter, their existence should be checked	 *              with `function_exists()` before being used.	 *	 * @param string[] $post_states An array of post display states.	 * @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.

  1. 6.7.7
  2. 6.8.8
  3. 6.9.7
  4. 7.0.4
  5. 7.1.0

Signature, return type and hooks compared across 5 parsed releases.

About this page

Parsed data
Generated from the wordpress-develop 6.7.7 tag, from src/wp-admin/includes/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.