wppaste
WordPress

get_post_states( WP_Post $post ): string[]

Since
5.3.0
Source
wp-admin/includes/template.php:2303
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
49–129

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

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
$post instanceof && empty($post) && !is_sticky()49–53is_sticky(), get_option(), get_option(), apply_filters()
$post instanceof && empty($post) && !is_sticky()55–59is_sticky(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && empty($post)55–59is_sticky(), _x(), get_option(), get_option(), apply_filters()
$post instanceof && !is_sticky()55–59_x(), is_sticky(), get_option(), get_option(), apply_filters()
$post instanceof && empty($post) && !get_post_meta() && !is_sticky()56–61get_post_meta(), is_sticky(), get_option(), get_option(), apply_filters()
$post instanceof && empty($post) && get_post_meta() && !is_sticky()60–64get_post_meta(), __(), is_sticky(), get_option(), get_option(), apply_filters()
$post instanceof && empty($post)61–65is_sticky(), _x(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && empty($post) && is_sticky()61–65is_sticky(), _x(), _x(), get_option(), get_option(), apply_filters()
$post instanceof && !is_sticky()61–65_x(), is_sticky(), get_option(), get_option(), _x(), apply_filters()
$post instanceof61–65_x(), is_sticky(), _x(), get_option(), get_option(), apply_filters()
$post instanceof && empty($post) && !get_post_meta() && !is_sticky()62–67get_post_meta(), is_sticky(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && empty($post) && !get_post_meta()62–67get_post_meta(), is_sticky(), _x(), get_option(), get_option(), apply_filters()
498 further outcomes, up to 129 instructions
$post instanceof && !get_post_meta() && !is_sticky()62–67_x(), get_post_meta(), is_sticky(), get_option(), get_option(), apply_filters()
$post instanceof && empty($post) && !is_sticky()63–67is_sticky(), get_option(), get_option(), get_option(), get_option(), apply_filters()
$post instanceof && empty($post) && !is_sticky()63–67get_post_meta(), _x(), is_sticky(), get_option(), get_option(), apply_filters()
$post instanceof && !is_sticky()63–65_x(), _x(), is_sticky(), get_option(), get_option(), apply_filters()
$post instanceof && empty($post) && get_post_meta() && !is_sticky()66–70get_post_meta(), __(), is_sticky(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && empty($post) && get_post_meta()66–70get_post_meta(), __(), is_sticky(), _x(), get_option(), get_option(), apply_filters()
$post instanceof && get_post_meta() && !is_sticky()66–70_x(), get_post_meta(), __(), is_sticky(), get_option(), get_option(), apply_filters()
$post instanceof && empty($post) && is_sticky()67–71is_sticky(), _x(), _x(), get_option(), get_option(), _x(), apply_filters()
$post instanceof67–71_x(), is_sticky(), _x(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && is_sticky()67–71_x(), is_sticky(), _x(), _x(), get_option(), get_option(), apply_filters()
$post instanceof && empty($post) && !get_post_meta()68–73get_post_meta(), is_sticky(), _x(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && empty($post) && !get_post_meta() && is_sticky()68–73get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), apply_filters()
$post instanceof && empty($post) && get_post_meta() && $post_status !== "pending" && !is_sticky()68–70get_post_meta(), __(), _x(), is_sticky(), get_option(), get_option(), apply_filters()
$post instanceof && !get_post_meta() && !is_sticky()68–73_x(), get_post_meta(), is_sticky(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && !get_post_meta()68–73_x(), get_post_meta(), is_sticky(), _x(), get_option(), get_option(), apply_filters()
$post instanceof && empty($post) && !is_sticky()69–73is_sticky(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && empty($post) && !is_sticky()69–73is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters()
$post instanceof && empty($post) && !is_sticky()69–73is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters()
$post instanceof && empty($post)69–73is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters()
$post instanceof && !is_sticky()69–73_x(), is_sticky(), get_option(), get_option(), get_option(), get_option(), apply_filters()
$post instanceof && empty($post) && !is_sticky()69–73get_post_meta(), _x(), is_sticky(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && empty($post)69–73get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), apply_filters()
$post instanceof && !is_sticky()69–71_x(), _x(), is_sticky(), get_option(), get_option(), _x(), apply_filters()
$post instanceof69–71_x(), _x(), is_sticky(), _x(), get_option(), get_option(), apply_filters()
$post instanceof && !is_sticky()69–73_x(), get_post_meta(), _x(), is_sticky(), get_option(), get_option(), apply_filters()
$post instanceof && empty($post) && !get_post_meta() && !is_sticky()70–75get_post_meta(), is_sticky(), get_option(), get_option(), get_option(), get_option(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private" && !get_post_meta() && !is_sticky()70–73_x(), _x(), get_post_meta(), is_sticky(), get_option(), get_option(), apply_filters()
$post instanceof && empty($post) && $post_status !== "pending" && !is_sticky()71–73get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private" && $post_status !== "pending" && !is_sticky()71_x(), _x(), _x(), is_sticky(), get_option(), get_option(), apply_filters()
$post instanceof && empty($post) && get_post_meta()72–76get_post_meta(), __(), is_sticky(), _x(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && empty($post) && get_post_meta() && is_sticky()72–76get_post_meta(), __(), is_sticky(), _x(), _x(), get_option(), get_option(), apply_filters()
$post instanceof && get_post_meta() && !is_sticky()72–76_x(), get_post_meta(), __(), is_sticky(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && get_post_meta()72–76_x(), get_post_meta(), __(), is_sticky(), _x(), get_option(), get_option(), apply_filters()
$post instanceof && is_sticky()73–77_x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && empty($post) && !get_post_meta() && is_sticky()74–79get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && empty($post) && get_post_meta() && !is_sticky()74–78get_post_meta(), __(), is_sticky(), get_option(), get_option(), get_option(), get_option(), apply_filters()
$post instanceof && empty($post) && get_post_meta() && $post_status !== "pending" && !is_sticky()74–76get_post_meta(), __(), _x(), is_sticky(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && empty($post) && get_post_meta() && $post_status !== "pending"74–76get_post_meta(), __(), _x(), is_sticky(), _x(), get_option(), get_option(), apply_filters()
$post instanceof && !get_post_meta()74–79_x(), get_post_meta(), is_sticky(), _x(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && !get_post_meta() && is_sticky()74–79_x(), get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), apply_filters()
$post instanceof && get_post_meta() && $post_status !== "pending" && !is_sticky()74–76_x(), get_post_meta(), __(), _x(), is_sticky(), get_option(), get_option(), apply_filters()
$post instanceof && empty($post) && !is_sticky()75–79is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters()
$post instanceof && empty($post) && !is_sticky()75–79is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && empty($post) && !is_sticky()75–79is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters()
$post instanceof && empty($post)75–79is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && empty($post)75–79is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters()
$post instanceof && empty($post)75–79is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters()
$post instanceof && empty($post) && is_sticky()75–79is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters()
$post instanceof && !is_sticky()75–79_x(), is_sticky(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && !is_sticky()75–79_x(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters()
$post instanceof && !is_sticky()75–79_x(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters()
$post instanceof75–79_x(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters()
$post instanceof && empty($post)75–79get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && empty($post) && is_sticky()75–79get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), apply_filters()
$post instanceof75–77_x(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && is_sticky()75–77_x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), apply_filters()
$post instanceof && !is_sticky()75–79_x(), get_post_meta(), _x(), is_sticky(), get_option(), get_option(), _x(), apply_filters()
$post instanceof75–79_x(), get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), apply_filters()
$post instanceof && empty($post) && !get_post_meta() && !is_sticky()76–81get_post_meta(), is_sticky(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && empty($post) && !get_post_meta() && !is_sticky()76–81get_post_meta(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters()
$post instanceof && empty($post) && !get_post_meta() && !is_sticky()76–81get_post_meta(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters()
$post instanceof && empty($post) && !get_post_meta()76–81get_post_meta(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters()
$post instanceof && !get_post_meta() && !is_sticky()76–81_x(), get_post_meta(), is_sticky(), get_option(), get_option(), get_option(), get_option(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private" && !get_post_meta() && !is_sticky()76–79_x(), _x(), get_post_meta(), is_sticky(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private" && !get_post_meta()76–79_x(), _x(), get_post_meta(), is_sticky(), _x(), get_option(), get_option(), apply_filters()
$post instanceof && empty($post) && !is_sticky()77–81get_post_meta(), _x(), is_sticky(), get_option(), get_option(), get_option(), get_option(), apply_filters()
$post instanceof && empty($post) && $post_status !== "pending" && !is_sticky()77–79get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && empty($post) && $post_status !== "pending"77–79get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), apply_filters()
$post instanceof && !is_sticky()77–79_x(), _x(), is_sticky(), get_option(), get_option(), get_option(), get_option(), apply_filters()
$post instanceof && $post_status !== "pending" && !is_sticky()77–79_x(), get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private" && $post_status !== "pending" && !is_sticky()77_x(), _x(), _x(), is_sticky(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private" && $post_status !== "pending"77_x(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private" && !is_sticky()77–79_x(), _x(), get_post_meta(), _x(), is_sticky(), get_option(), get_option(), apply_filters()
$post instanceof && empty($post) && get_post_meta() && is_sticky()78–82get_post_meta(), __(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && get_post_meta()78–82_x(), get_post_meta(), __(), is_sticky(), _x(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && get_post_meta() && is_sticky()78–82_x(), get_post_meta(), __(), is_sticky(), _x(), _x(), get_option(), get_option(), apply_filters()
$post instanceof && empty($post) && get_post_meta() && !is_sticky()80–84get_post_meta(), __(), is_sticky(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && empty($post) && get_post_meta() && !is_sticky()80–84get_post_meta(), __(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters()
$post instanceof && empty($post) && get_post_meta() && !is_sticky()80–84get_post_meta(), __(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters()
$post instanceof && empty($post) && get_post_meta()80–84get_post_meta(), __(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters()
$post instanceof && empty($post) && get_post_meta() && $post_status !== "pending"80–82get_post_meta(), __(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && empty($post) && get_post_meta() && $post_status !== "pending" && is_sticky()80–82get_post_meta(), __(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), apply_filters()
$post instanceof && !get_post_meta() && is_sticky()80–85_x(), get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && get_post_meta() && !is_sticky()80–84_x(), get_post_meta(), __(), is_sticky(), get_option(), get_option(), get_option(), get_option(), apply_filters()
$post instanceof && get_post_meta() && $post_status !== "pending" && !is_sticky()80–82_x(), get_post_meta(), __(), _x(), is_sticky(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && get_post_meta() && $post_status !== "pending"80–82_x(), get_post_meta(), __(), _x(), is_sticky(), _x(), get_option(), get_option(), apply_filters()
$post instanceof && empty($post) && !is_sticky()81–85is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters()
$post instanceof && empty($post)81–85is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters()
$post instanceof && empty($post)81–85is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && empty($post)81–85is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters()
$post instanceof && empty($post) && is_sticky()81–85is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && empty($post) && is_sticky()81–85is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters()
$post instanceof && empty($post) && is_sticky()81–85is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters()
$post instanceof && !is_sticky()81–85_x(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters()
$post instanceof && !is_sticky()81–85_x(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && !is_sticky()81–85_x(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters()
$post instanceof81–85_x(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters()
$post instanceof81–85_x(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters()
$post instanceof81–85_x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters()
$post instanceof && is_sticky()81–85_x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters()
$post instanceof && empty($post) && is_sticky()81–85get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && is_sticky()81–83_x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), apply_filters()
$post instanceof81–85_x(), get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && is_sticky()81–85_x(), get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), apply_filters()
$post instanceof && empty($post) && !get_post_meta() && !is_sticky()82–87get_post_meta(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters()
$post instanceof && empty($post) && !get_post_meta() && !is_sticky()82–87get_post_meta(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && empty($post) && !get_post_meta() && !is_sticky()82–87get_post_meta(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters()
$post instanceof && empty($post) && !get_post_meta()82–87get_post_meta(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && empty($post) && !get_post_meta()82–87get_post_meta(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters()
$post instanceof && empty($post) && !get_post_meta()82–87get_post_meta(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters()
$post instanceof && empty($post) && !get_post_meta() && is_sticky()82–87get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters()
$post instanceof && empty($post) && get_post_meta() && $post_status !== "pending" && !is_sticky()82–84get_post_meta(), __(), _x(), is_sticky(), get_option(), get_option(), get_option(), get_option(), apply_filters()
$post instanceof && !get_post_meta() && !is_sticky()82–87_x(), get_post_meta(), is_sticky(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && !get_post_meta() && !is_sticky()82–87_x(), get_post_meta(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters()
$post instanceof && !get_post_meta() && !is_sticky()82–87_x(), get_post_meta(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters()
$post instanceof && !get_post_meta()82–87_x(), get_post_meta(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private" && !get_post_meta()82–85_x(), _x(), get_post_meta(), is_sticky(), _x(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private" && !get_post_meta() && is_sticky()82–85_x(), _x(), get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), apply_filters()
$post instanceof && empty($post) && !is_sticky()83–87get_post_meta(), _x(), is_sticky(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && empty($post) && !is_sticky()83–87get_post_meta(), _x(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters()
$post instanceof && empty($post) && !is_sticky()83–87get_post_meta(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters()
$post instanceof && empty($post)83–87get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters()
$post instanceof && empty($post) && $post_status !== "pending"83–85get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && empty($post) && $post_status !== "pending" && is_sticky()83–85get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), apply_filters()
$post instanceof && !is_sticky()83–85_x(), _x(), is_sticky(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && !is_sticky()83–85_x(), _x(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters()
$post instanceof && !is_sticky()83–85_x(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters()
$post instanceof83–85_x(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters()
$post instanceof && !is_sticky()83–87_x(), get_post_meta(), _x(), is_sticky(), get_option(), get_option(), get_option(), get_option(), apply_filters()
$post instanceof && $post_status !== "pending" && !is_sticky()83–85_x(), get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && $post_status !== "pending"83–85_x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private" && $post_status !== "pending"83_x(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private" && $post_status !== "pending" && is_sticky()83_x(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private" && !is_sticky()83–85_x(), _x(), get_post_meta(), _x(), is_sticky(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private"83–85_x(), _x(), get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private" && !get_post_meta() && !is_sticky()84–87_x(), _x(), get_post_meta(), is_sticky(), get_option(), get_option(), get_option(), get_option(), apply_filters()
$post instanceof && get_post_meta() && is_sticky()84–88_x(), get_post_meta(), __(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && empty($post) && $post_status !== "pending" && !is_sticky()85–87get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), get_option(), get_option(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private" && $post_status !== "pending" && !is_sticky()85_x(), _x(), _x(), is_sticky(), get_option(), get_option(), get_option(), get_option(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending" && !is_sticky()85_x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), apply_filters()
$post instanceof && empty($post) && get_post_meta() && !is_sticky()86–90get_post_meta(), __(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters()
$post instanceof && empty($post) && get_post_meta() && !is_sticky()86–90get_post_meta(), __(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && empty($post) && get_post_meta() && !is_sticky()86–90get_post_meta(), __(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters()
$post instanceof && empty($post) && get_post_meta()86–90get_post_meta(), __(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && empty($post) && get_post_meta()86–90get_post_meta(), __(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters()
$post instanceof && empty($post) && get_post_meta()86–90get_post_meta(), __(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters()
$post instanceof && empty($post) && get_post_meta() && is_sticky()86–90get_post_meta(), __(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters()
$post instanceof && empty($post) && get_post_meta() && $post_status !== "pending" && is_sticky()86–88get_post_meta(), __(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && get_post_meta() && !is_sticky()86–90_x(), get_post_meta(), __(), is_sticky(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && get_post_meta() && !is_sticky()86–90_x(), get_post_meta(), __(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters()
$post instanceof && get_post_meta() && !is_sticky()86–90_x(), get_post_meta(), __(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters()
$post instanceof && get_post_meta()86–90_x(), get_post_meta(), __(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters()
$post instanceof && get_post_meta() && $post_status !== "pending"86–88_x(), get_post_meta(), __(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && get_post_meta() && $post_status !== "pending" && is_sticky()86–88_x(), get_post_meta(), __(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), apply_filters()
$post instanceof && empty($post)87–91is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters()
$post instanceof && empty($post) && is_sticky()87–91is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters()
$post instanceof && empty($post) && is_sticky()87–91is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && empty($post) && is_sticky()87–91is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters()
$post instanceof && !is_sticky()87–91_x(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters()
$post instanceof87–91_x(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters()
$post instanceof87–91_x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters()
$post instanceof87–91_x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters()
$post instanceof && is_sticky()87–91_x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && is_sticky()87–91_x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters()
$post instanceof && is_sticky()87–91_x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters()
$post instanceof && is_sticky()87–91_x(), get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && empty($post) && !get_post_meta() && !is_sticky()88–93get_post_meta(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters()
$post instanceof && empty($post) && !get_post_meta()88–93get_post_meta(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters()
$post instanceof && empty($post) && !get_post_meta()88–93get_post_meta(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && empty($post) && !get_post_meta()88–93get_post_meta(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters()
$post instanceof && empty($post) && !get_post_meta() && is_sticky()88–93get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && empty($post) && !get_post_meta() && is_sticky()88–93get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters()
$post instanceof && empty($post) && !get_post_meta() && is_sticky()88–93get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters()
$post instanceof && empty($post) && get_post_meta() && $post_status !== "pending" && !is_sticky()88–90get_post_meta(), __(), _x(), is_sticky(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && empty($post) && get_post_meta() && $post_status !== "pending" && !is_sticky()88–90get_post_meta(), __(), _x(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters()
$post instanceof && empty($post) && get_post_meta() && $post_status !== "pending" && !is_sticky()88–90get_post_meta(), __(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters()
$post instanceof && empty($post) && get_post_meta() && $post_status !== "pending"88–90get_post_meta(), __(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters()
$post instanceof && !get_post_meta() && !is_sticky()88–93_x(), get_post_meta(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters()
$post instanceof && !get_post_meta() && !is_sticky()88–93_x(), get_post_meta(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && !get_post_meta() && !is_sticky()88–93_x(), get_post_meta(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters()
$post instanceof && !get_post_meta()88–93_x(), get_post_meta(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && !get_post_meta()88–93_x(), get_post_meta(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters()
$post instanceof && !get_post_meta()88–93_x(), get_post_meta(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters()
$post instanceof && !get_post_meta() && is_sticky()88–93_x(), get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters()
$post instanceof && get_post_meta() && $post_status !== "pending" && !is_sticky()88–90_x(), get_post_meta(), __(), _x(), is_sticky(), get_option(), get_option(), get_option(), get_option(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private" && !get_post_meta() && is_sticky()88–91_x(), _x(), get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && empty($post) && !is_sticky()89–93get_post_meta(), _x(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters()
$post instanceof && empty($post) && !is_sticky()89–93get_post_meta(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && empty($post) && !is_sticky()89–93get_post_meta(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters()
$post instanceof && empty($post)89–93get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && empty($post)89–93get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters()
$post instanceof && empty($post)89–93get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters()
$post instanceof && empty($post) && is_sticky()89–93get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters()
$post instanceof && empty($post) && $post_status !== "pending" && is_sticky()89–91get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && !is_sticky()89–91_x(), _x(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters()
$post instanceof && !is_sticky()89–91_x(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && !is_sticky()89–91_x(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters()
$post instanceof89–91_x(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters()
$post instanceof89–91_x(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters()
$post instanceof89–91_x(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters()
$post instanceof && is_sticky()89–91_x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters()
$post instanceof && !is_sticky()89–93_x(), get_post_meta(), _x(), is_sticky(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && !is_sticky()89–93_x(), get_post_meta(), _x(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters()
$post instanceof && !is_sticky()89–93_x(), get_post_meta(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters()
$post instanceof89–93_x(), get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters()
$post instanceof && $post_status !== "pending"89–91_x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && $post_status !== "pending" && is_sticky()89–91_x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private" && $post_status !== "pending" && is_sticky()89_x(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private"89–91_x(), _x(), get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private" && is_sticky()89–91_x(), _x(), get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private" && !get_post_meta() && !is_sticky()90–93_x(), _x(), get_post_meta(), is_sticky(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private" && !get_post_meta() && !is_sticky()90–93_x(), _x(), get_post_meta(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private" && !get_post_meta() && !is_sticky()90–93_x(), _x(), get_post_meta(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private" && !get_post_meta()90–93_x(), _x(), get_post_meta(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters()
$post instanceof && empty($post) && $post_status !== "pending" && !is_sticky()91–93get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && empty($post) && $post_status !== "pending" && !is_sticky()91–93get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters()
$post instanceof && empty($post) && $post_status !== "pending" && !is_sticky()91–93get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters()
$post instanceof && empty($post) && $post_status !== "pending"91–93get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters()
$post instanceof && $post_status !== "pending" && !is_sticky()91–93_x(), get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), get_option(), get_option(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private" && $post_status !== "pending" && !is_sticky()91_x(), _x(), _x(), is_sticky(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private" && $post_status !== "pending" && !is_sticky()91_x(), _x(), _x(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private" && $post_status !== "pending" && !is_sticky()91_x(), _x(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private" && $post_status !== "pending"91_x(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private" && !is_sticky()91–93_x(), _x(), get_post_meta(), _x(), is_sticky(), get_option(), get_option(), get_option(), get_option(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending" && !is_sticky()91_x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending"91_x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), apply_filters()
$post instanceof && empty($post) && get_post_meta() && !is_sticky()92–96get_post_meta(), __(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters()
$post instanceof && empty($post) && get_post_meta()92–96get_post_meta(), __(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters()
$post instanceof && empty($post) && get_post_meta()92–96get_post_meta(), __(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && empty($post) && get_post_meta()92–96get_post_meta(), __(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters()
$post instanceof && empty($post) && get_post_meta() && is_sticky()92–96get_post_meta(), __(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && empty($post) && get_post_meta() && is_sticky()92–96get_post_meta(), __(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters()
$post instanceof && empty($post) && get_post_meta() && is_sticky()92–96get_post_meta(), __(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters()
$post instanceof && get_post_meta() && !is_sticky()92–96_x(), get_post_meta(), __(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters()
$post instanceof && get_post_meta() && !is_sticky()92–96_x(), get_post_meta(), __(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && get_post_meta() && !is_sticky()92–96_x(), get_post_meta(), __(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters()
$post instanceof && get_post_meta()92–96_x(), get_post_meta(), __(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && get_post_meta()92–96_x(), get_post_meta(), __(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters()
$post instanceof && get_post_meta()92–96_x(), get_post_meta(), __(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters()
$post instanceof && get_post_meta() && is_sticky()92–96_x(), get_post_meta(), __(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters()
$post instanceof && get_post_meta() && $post_status !== "pending" && is_sticky()92–94_x(), get_post_meta(), __(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && empty($post) && is_sticky()93–97is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters()
$post instanceof93–97_x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters()
$post instanceof && is_sticky()93–97_x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters()
$post instanceof && is_sticky()93–97_x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && is_sticky()93–97_x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters()
$post instanceof && empty($post) && !get_post_meta()94–99get_post_meta(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters()
$post instanceof && empty($post) && !get_post_meta() && is_sticky()94–99get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters()
$post instanceof && empty($post) && !get_post_meta() && is_sticky()94–99get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && empty($post) && !get_post_meta() && is_sticky()94–99get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters()
$post instanceof && empty($post) && get_post_meta() && $post_status !== "pending" && !is_sticky()94–96get_post_meta(), __(), _x(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters()
$post instanceof && empty($post) && get_post_meta() && $post_status !== "pending" && !is_sticky()94–96get_post_meta(), __(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && empty($post) && get_post_meta() && $post_status !== "pending" && !is_sticky()94–96get_post_meta(), __(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters()
$post instanceof && empty($post) && get_post_meta() && $post_status !== "pending"94–96get_post_meta(), __(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && empty($post) && get_post_meta() && $post_status !== "pending"94–96get_post_meta(), __(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters()
$post instanceof && empty($post) && get_post_meta() && $post_status !== "pending"94–96get_post_meta(), __(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters()
$post instanceof && empty($post) && get_post_meta() && $post_status !== "pending" && is_sticky()94–96get_post_meta(), __(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters()
$post instanceof && !get_post_meta() && !is_sticky()94–99_x(), get_post_meta(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters()
$post instanceof && !get_post_meta()94–99_x(), get_post_meta(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters()
$post instanceof && !get_post_meta()94–99_x(), get_post_meta(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && !get_post_meta()94–99_x(), get_post_meta(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters()
$post instanceof && !get_post_meta() && is_sticky()94–99_x(), get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && !get_post_meta() && is_sticky()94–99_x(), get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters()
$post instanceof && !get_post_meta() && is_sticky()94–99_x(), get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters()
$post instanceof && get_post_meta() && $post_status !== "pending" && !is_sticky()94–96_x(), get_post_meta(), __(), _x(), is_sticky(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && get_post_meta() && $post_status !== "pending" && !is_sticky()94–96_x(), get_post_meta(), __(), _x(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters()
$post instanceof && get_post_meta() && $post_status !== "pending" && !is_sticky()94–96_x(), get_post_meta(), __(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters()
$post instanceof && get_post_meta() && $post_status !== "pending"94–96_x(), get_post_meta(), __(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters()
$post instanceof && empty($post) && !is_sticky()95–99get_post_meta(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters()
$post instanceof && empty($post)95–99get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters()
$post instanceof && empty($post)95–99get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && empty($post)95–99get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters()
$post instanceof && empty($post) && is_sticky()95–99get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && empty($post) && is_sticky()95–99get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters()
$post instanceof && empty($post) && is_sticky()95–99get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters()
$post instanceof && !is_sticky()95–97_x(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters()
$post instanceof95–97_x(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters()
$post instanceof95–97_x(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters()
$post instanceof95–97_x(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters()
$post instanceof && is_sticky()95–97_x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && is_sticky()95–97_x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters()
$post instanceof && is_sticky()95–97_x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters()
$post instanceof && !is_sticky()95–99_x(), get_post_meta(), _x(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters()
$post instanceof && !is_sticky()95–99_x(), get_post_meta(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && !is_sticky()95–99_x(), get_post_meta(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters()
$post instanceof95–99_x(), get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters()
$post instanceof95–99_x(), get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters()
$post instanceof95–99_x(), get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters()
$post instanceof && is_sticky()95–99_x(), get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters()
$post instanceof && $post_status !== "pending" && is_sticky()95–97_x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private" && is_sticky()95–97_x(), _x(), get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private" && !get_post_meta() && !is_sticky()96–99_x(), _x(), get_post_meta(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private" && !get_post_meta() && !is_sticky()96–99_x(), _x(), get_post_meta(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private" && !get_post_meta() && !is_sticky()96–99_x(), _x(), get_post_meta(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private" && !get_post_meta()96–99_x(), _x(), get_post_meta(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private" && !get_post_meta()96–99_x(), _x(), get_post_meta(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private" && !get_post_meta()96–99_x(), _x(), get_post_meta(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private" && !get_post_meta() && is_sticky()96–99_x(), _x(), get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters()
$post instanceof && empty($post) && $post_status !== "pending" && !is_sticky()97–99get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters()
$post instanceof && empty($post) && $post_status !== "pending" && !is_sticky()97–99get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && empty($post) && $post_status !== "pending" && !is_sticky()97–99get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters()
$post instanceof && empty($post) && $post_status !== "pending"97–99get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && empty($post) && $post_status !== "pending"97–99get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters()
$post instanceof && empty($post) && $post_status !== "pending"97–99get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters()
$post instanceof && empty($post) && $post_status !== "pending" && is_sticky()97–99get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters()
$post instanceof && $post_status !== "pending" && !is_sticky()97–99_x(), get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && $post_status !== "pending" && !is_sticky()97–99_x(), get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters()
$post instanceof && $post_status !== "pending" && !is_sticky()97–99_x(), get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters()
$post instanceof && $post_status !== "pending"97–99_x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private" && $post_status !== "pending" && !is_sticky()97_x(), _x(), _x(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private" && $post_status !== "pending" && !is_sticky()97_x(), _x(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private" && $post_status !== "pending" && !is_sticky()97_x(), _x(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private" && $post_status !== "pending"97_x(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private" && $post_status !== "pending"97_x(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private" && $post_status !== "pending"97_x(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private" && $post_status !== "pending" && is_sticky()97_x(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private" && !is_sticky()97–99_x(), _x(), get_post_meta(), _x(), is_sticky(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private" && !is_sticky()97–99_x(), _x(), get_post_meta(), _x(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private" && !is_sticky()97–99_x(), _x(), get_post_meta(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private"97–99_x(), _x(), get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending"97_x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending" && is_sticky()97_x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), apply_filters()
$post instanceof && empty($post) && get_post_meta()98–102get_post_meta(), __(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters()
$post instanceof && empty($post) && get_post_meta() && is_sticky()98–102get_post_meta(), __(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters()
$post instanceof && empty($post) && get_post_meta() && is_sticky()98–102get_post_meta(), __(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && empty($post) && get_post_meta() && is_sticky()98–102get_post_meta(), __(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters()
$post instanceof && get_post_meta() && !is_sticky()98–102_x(), get_post_meta(), __(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters()
$post instanceof && get_post_meta()98–102_x(), get_post_meta(), __(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters()
$post instanceof && get_post_meta()98–102_x(), get_post_meta(), __(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && get_post_meta()98–102_x(), get_post_meta(), __(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters()
$post instanceof && get_post_meta() && is_sticky()98–102_x(), get_post_meta(), __(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && get_post_meta() && is_sticky()98–102_x(), get_post_meta(), __(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters()
$post instanceof && get_post_meta() && is_sticky()98–102_x(), get_post_meta(), __(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending" && !is_sticky()99_x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), get_option(), get_option(), apply_filters()
$post instanceof && is_sticky()99–103_x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters()
$post instanceof && empty($post) && !get_post_meta() && is_sticky()100–105get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters()
$post instanceof && empty($post) && get_post_meta() && $post_status !== "pending" && !is_sticky()100–102get_post_meta(), __(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters()
$post instanceof && empty($post) && get_post_meta() && $post_status !== "pending"100–102get_post_meta(), __(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters()
$post instanceof && empty($post) && get_post_meta() && $post_status !== "pending"100–102get_post_meta(), __(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && empty($post) && get_post_meta() && $post_status !== "pending"100–102get_post_meta(), __(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters()
$post instanceof && empty($post) && get_post_meta() && $post_status !== "pending" && is_sticky()100–102get_post_meta(), __(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && empty($post) && get_post_meta() && $post_status !== "pending" && is_sticky()100–102get_post_meta(), __(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters()
$post instanceof && empty($post) && get_post_meta() && $post_status !== "pending" && is_sticky()100–102get_post_meta(), __(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters()
$post instanceof && !get_post_meta()100–105_x(), get_post_meta(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters()
$post instanceof && !get_post_meta() && is_sticky()100–105_x(), get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters()
$post instanceof && !get_post_meta() && is_sticky()100–105_x(), get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && !get_post_meta() && is_sticky()100–105_x(), get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters()
$post instanceof && get_post_meta() && $post_status !== "pending" && !is_sticky()100–102_x(), get_post_meta(), __(), _x(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters()
$post instanceof && get_post_meta() && $post_status !== "pending" && !is_sticky()100–102_x(), get_post_meta(), __(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && get_post_meta() && $post_status !== "pending" && !is_sticky()100–102_x(), get_post_meta(), __(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters()
$post instanceof && get_post_meta() && $post_status !== "pending"100–102_x(), get_post_meta(), __(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && get_post_meta() && $post_status !== "pending"100–102_x(), get_post_meta(), __(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters()
$post instanceof && get_post_meta() && $post_status !== "pending"100–102_x(), get_post_meta(), __(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters()
$post instanceof && get_post_meta() && $post_status !== "pending" && is_sticky()100–102_x(), get_post_meta(), __(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters()
$post instanceof && empty($post)101–105get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters()
$post instanceof && empty($post) && is_sticky()101–105get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters()
$post instanceof && empty($post) && is_sticky()101–105get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && empty($post) && is_sticky()101–105get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters()
$post instanceof101–103_x(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters()
$post instanceof && is_sticky()101–103_x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters()
$post instanceof && is_sticky()101–103_x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && is_sticky()101–103_x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters()
$post instanceof && !is_sticky()101–105_x(), get_post_meta(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters()
$post instanceof101–105_x(), get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters()
$post instanceof101–105_x(), get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters()
$post instanceof101–105_x(), get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters()
$post instanceof && is_sticky()101–105_x(), get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && is_sticky()101–105_x(), get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters()
$post instanceof && is_sticky()101–105_x(), get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private" && !get_post_meta() && !is_sticky()102–105_x(), _x(), get_post_meta(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private" && !get_post_meta()102–105_x(), _x(), get_post_meta(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private" && !get_post_meta()102–105_x(), _x(), get_post_meta(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private" && !get_post_meta()102–105_x(), _x(), get_post_meta(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private" && !get_post_meta() && is_sticky()102–105_x(), _x(), get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private" && !get_post_meta() && is_sticky()102–105_x(), _x(), get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private" && !get_post_meta() && is_sticky()102–105_x(), _x(), get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters()
$post instanceof && empty($post) && $post_status !== "pending" && !is_sticky()103–105get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters()
$post instanceof && empty($post) && $post_status !== "pending"103–105get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters()
$post instanceof && empty($post) && $post_status !== "pending"103–105get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && empty($post) && $post_status !== "pending"103–105get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters()
$post instanceof && empty($post) && $post_status !== "pending" && is_sticky()103–105get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && empty($post) && $post_status !== "pending" && is_sticky()103–105get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters()
$post instanceof && empty($post) && $post_status !== "pending" && is_sticky()103–105get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters()
$post instanceof && $post_status !== "pending" && !is_sticky()103–105_x(), get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters()
$post instanceof && $post_status !== "pending" && !is_sticky()103–105_x(), get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && $post_status !== "pending" && !is_sticky()103–105_x(), get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters()
$post instanceof && $post_status !== "pending"103–105_x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && $post_status !== "pending"103–105_x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters()
$post instanceof && $post_status !== "pending"103–105_x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters()
$post instanceof && $post_status !== "pending" && is_sticky()103–105_x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private" && $post_status !== "pending" && !is_sticky()103_x(), _x(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private" && $post_status !== "pending"103_x(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private" && $post_status !== "pending"103_x(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private" && $post_status !== "pending"103_x(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private" && $post_status !== "pending" && is_sticky()103_x(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private" && $post_status !== "pending" && is_sticky()103_x(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private" && $post_status !== "pending" && is_sticky()103_x(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private" && !is_sticky()103–105_x(), _x(), get_post_meta(), _x(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private" && !is_sticky()103–105_x(), _x(), get_post_meta(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private" && !is_sticky()103–105_x(), _x(), get_post_meta(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private"103–105_x(), _x(), get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private"103–105_x(), _x(), get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private"103–105_x(), _x(), get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private" && is_sticky()103–105_x(), _x(), get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending" && is_sticky()103_x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && empty($post) && get_post_meta() && is_sticky()104–108get_post_meta(), __(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters()
$post instanceof && get_post_meta()104–108_x(), get_post_meta(), __(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters()
$post instanceof && get_post_meta() && is_sticky()104–108_x(), get_post_meta(), __(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters()
$post instanceof && get_post_meta() && is_sticky()104–108_x(), get_post_meta(), __(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && get_post_meta() && is_sticky()104–108_x(), get_post_meta(), __(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending" && !is_sticky()105_x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending" && !is_sticky()105_x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending" && !is_sticky()105_x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending"105_x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters()
$post instanceof && empty($post) && get_post_meta() && $post_status !== "pending"106–108get_post_meta(), __(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters()
$post instanceof && empty($post) && get_post_meta() && $post_status !== "pending" && is_sticky()106–108get_post_meta(), __(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters()
$post instanceof && empty($post) && get_post_meta() && $post_status !== "pending" && is_sticky()106–108get_post_meta(), __(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && empty($post) && get_post_meta() && $post_status !== "pending" && is_sticky()106–108get_post_meta(), __(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters()
$post instanceof && !get_post_meta() && is_sticky()106–111_x(), get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters()
$post instanceof && get_post_meta() && $post_status !== "pending" && !is_sticky()106–108_x(), get_post_meta(), __(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters()
$post instanceof && get_post_meta() && $post_status !== "pending"106–108_x(), get_post_meta(), __(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters()
$post instanceof && get_post_meta() && $post_status !== "pending"106–108_x(), get_post_meta(), __(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && get_post_meta() && $post_status !== "pending"106–108_x(), get_post_meta(), __(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters()
$post instanceof && get_post_meta() && $post_status !== "pending" && is_sticky()106–108_x(), get_post_meta(), __(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && get_post_meta() && $post_status !== "pending" && is_sticky()106–108_x(), get_post_meta(), __(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters()
$post instanceof && get_post_meta() && $post_status !== "pending" && is_sticky()106–108_x(), get_post_meta(), __(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters()
$post instanceof && empty($post) && is_sticky()107–111get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters()
$post instanceof && is_sticky()107–109_x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters()
$post instanceof107–111_x(), get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters()
$post instanceof && is_sticky()107–111_x(), get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters()
$post instanceof && is_sticky()107–111_x(), get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && is_sticky()107–111_x(), get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private" && !get_post_meta()108–111_x(), _x(), get_post_meta(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private" && !get_post_meta() && is_sticky()108–111_x(), _x(), get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private" && !get_post_meta() && is_sticky()108–111_x(), _x(), get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private" && !get_post_meta() && is_sticky()108–111_x(), _x(), get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters()
$post instanceof && empty($post) && $post_status !== "pending"109–111get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters()
$post instanceof && empty($post) && $post_status !== "pending" && is_sticky()109–111get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters()
$post instanceof && empty($post) && $post_status !== "pending" && is_sticky()109–111get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && empty($post) && $post_status !== "pending" && is_sticky()109–111get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters()
$post instanceof && $post_status !== "pending" && !is_sticky()109–111_x(), get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters()
$post instanceof && $post_status !== "pending"109–111_x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters()
$post instanceof && $post_status !== "pending"109–111_x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && $post_status !== "pending"109–111_x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters()
$post instanceof && $post_status !== "pending" && is_sticky()109–111_x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && $post_status !== "pending" && is_sticky()109–111_x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters()
$post instanceof && $post_status !== "pending" && is_sticky()109–111_x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private" && $post_status !== "pending"109_x(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private" && $post_status !== "pending" && is_sticky()109_x(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private" && $post_status !== "pending" && is_sticky()109_x(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private" && $post_status !== "pending" && is_sticky()109_x(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private" && !is_sticky()109–111_x(), _x(), get_post_meta(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private"109–111_x(), _x(), get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private"109–111_x(), _x(), get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private"109–111_x(), _x(), get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private" && is_sticky()109–111_x(), _x(), get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private" && is_sticky()109–111_x(), _x(), get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private" && is_sticky()109–111_x(), _x(), get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters()
$post instanceof && get_post_meta() && is_sticky()110–114_x(), get_post_meta(), __(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending" && !is_sticky()111_x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending" && !is_sticky()111_x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending" && !is_sticky()111_x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending"111_x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending"111_x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending"111_x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending" && is_sticky()111_x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), apply_filters()
$post instanceof && empty($post) && get_post_meta() && $post_status !== "pending" && is_sticky()112–114get_post_meta(), __(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters()
$post instanceof && get_post_meta() && $post_status !== "pending"112–114_x(), get_post_meta(), __(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters()
$post instanceof && get_post_meta() && $post_status !== "pending" && is_sticky()112–114_x(), get_post_meta(), __(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters()
$post instanceof && get_post_meta() && $post_status !== "pending" && is_sticky()112–114_x(), get_post_meta(), __(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && get_post_meta() && $post_status !== "pending" && is_sticky()112–114_x(), get_post_meta(), __(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters()
$post instanceof && is_sticky()113–117_x(), get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private" && !get_post_meta() && is_sticky()114–117_x(), _x(), get_post_meta(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters()
$post instanceof && empty($post) && $post_status !== "pending" && is_sticky()115–117get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters()
$post instanceof && $post_status !== "pending"115–117_x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters()
$post instanceof && $post_status !== "pending" && is_sticky()115–117_x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters()
$post instanceof && $post_status !== "pending" && is_sticky()115–117_x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && $post_status !== "pending" && is_sticky()115–117_x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private" && $post_status !== "pending" && is_sticky()115_x(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private"115–117_x(), _x(), get_post_meta(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private" && is_sticky()115–117_x(), _x(), get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private" && is_sticky()115–117_x(), _x(), get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private" && is_sticky()115–117_x(), _x(), get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending" && !is_sticky()117_x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending"117_x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending"117_x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending"117_x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending" && is_sticky()117_x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending" && is_sticky()117_x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending" && is_sticky()117_x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), apply_filters()
$post instanceof && get_post_meta() && $post_status !== "pending" && is_sticky()118–120_x(), get_post_meta(), __(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters()
$post instanceof && $post_status !== "pending" && is_sticky()121–123_x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private" && is_sticky()121–123_x(), _x(), get_post_meta(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending"123_x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending" && is_sticky()123_x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), get_option(), _x(), get_option(), _x(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending" && is_sticky()123_x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), get_option(), _x(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending" && is_sticky()123_x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), apply_filters()
$post instanceof && !empty($post) && $post_status !== "private" && get_post_meta() && $post_status !== "pending" && is_sticky()129_x(), _x(), get_post_meta(), _x(), _x(), is_sticky(), _x(), _x(), get_option(), get_option(), _x(), get_option(), _x(), get_option(), _x(), apply_filters()

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

Across PHP versions

Compiles the same on PHP 7.4, 8.1, 8.2, 8.3, 8.4, 8.5 and 8.6-dev: 154 instructions, 49–129 executed per call, 18 branches. The work does not change between versions.

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

Hooks and filters fired · 1

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

  1. apply_filters( display_post_states )filterline 2368 (+65 into the body)

    Filters the default post display states used in the posts list table.

Uses · 6

  • _x()Retrieves translated string with gettext context.
  • get_post_meta()Retrieves a post meta field for the given post ID.
  • __()Retrieves the translation of $text.
  • is_sticky()Determines whether a post is sticky.
  • get_option()Retrieves an option value based on an option name.
  • apply_filters()Calls the callback functions that have been added to a filter hook.

Used by · 4

Source code

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

Changelog

Introduced in 5.3.0. Unchanged from 6.7.7 through 7.1.0.

  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 7.0.4 tag, from src/wp-admin/includes/template.php, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it.
Corrections
Something wrong on this page? Report it and it gets fixed in the next regeneration.