wp_title( string $sep = '»', bool $display = true, string $seplocation = '' ): string|void
- Since
- 1.0.0
- Source
wp-includes/general-template.php:1339
Description
By default, the page title will display the separator before the page title, so that the blog title will be before the page title. This is not good for title display, since the blog title shows up on most tabs and not what is important, which is the page that the user is looking at.
There are also SEO benefits to having the blog title after or to the 'right' of the page title. However, it is mostly common sense to have the blog title to the right with most browsers supporting tabs. You can achieve this by using the seplocation parameter and setting the value to 'right'. This change was introduced around 2.5.0, in case backward compatibility of themes is important.
Compatibility
- WordPress
- since 1.0.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
$sepstringoptional- How to separate the various items within the page title.
Default '»'.Default:'»' $displaybooloptional- Whether to display or retrieve title. Default true.Default:
true $seplocationstringoptional- Location of the separator (either 'left' or 'right').Default:
''
Return value
string|void- String when
$displayis false, nothing otherwise.
Performance profile
How much work a call to wp_title() 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
- Trivial
- Scaling
- Constant
- Instructions
- 94–166
- Plugin surface
- 2 hooks
- Called by
- 0
Touches nothing outside its own arguments.
No loop in the body: the same number of instructions runs whatever you pass in.
Executed per call on PHP 8.5, depending on the branch taken. The body compiles to 238.
Third-party callbacks on 'wp_title_parts', 'wp_title' run inside this call, and their cost is not bounded by anything here.
Nothing in core calls this; the cost is only what you spend yourself.
What it touches
- hookthird-party callbacks
apply_filters()called directly
Further down the call graph this can also reach query, option, cache, serialize and transient. Those are the worst case, several calls deep and usually down an error path, not what a normal call pays.
What one call costs · 160 distinct outcomes
One number would be a lie: the work depends on which branch runs. These are every distinct cost wp_title() can have, taken from its control-flow graph on PHP 8.5.
| When | Instructions | Calls it makes |
|---|---|---|
is_single() && !is_post_type_archive() && is_category() && !is_tax() && !is_author() && !is_search() && !is_404() && $seplocation !== "right" | 94–125 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), is_archive(), is_archive(), is_search(), is_404(), explode(), apply_filters(), apply_filters() |
is_single() && is_category() && !is_tax() && is_author() && !is_search() && !is_404() && $seplocation !== "right" | 97–125 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), is_post_type_archive(), is_archive(), is_archive(), is_search(), is_404(), explode(), apply_filters(), apply_filters() |
is_single() && !is_post_type_archive() && is_category() && !is_tax() && !is_author() && !is_search() && is_404() && $seplocation !== "right" | 98–129 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), is_archive(), is_archive(), is_search(), is_404(), __(), explode(), apply_filters(), apply_filters() |
is_single() && !is_post_type_archive() && is_category() && !is_tax() && !is_author() && !is_search() && !is_404() && $seplocation === "right" | 99–130 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), is_archive(), is_archive(), is_search(), is_404(), explode(), apply_filters(), array_reverse(), apply_filters() |
is_single() && is_category() && !is_tax() && !is_author() && $post_type_object && !is_search() && !is_404() && $seplocation !== "right" | 101–130 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), post_type_archive_title(), is_archive(), is_archive(), is_search(), is_404(), explode(), apply_filters(), apply_filters() |
is_single() && is_category() && !is_tax() && is_author() && !is_search() && is_404() && $seplocation !== "right" | 101–129 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), is_post_type_archive(), is_archive(), is_archive(), is_search(), is_404(), __(), explode(), apply_filters(), apply_filters() |
is_single() && is_category() && !is_tax() && is_author() && !is_search() && !is_404() && $seplocation === "right" | 102–130 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), is_post_type_archive(), is_archive(), is_archive(), is_search(), is_404(), explode(), apply_filters(), array_reverse(), apply_filters() |
is_single() && !is_post_type_archive() && is_category() && !is_tax() && !is_author() && !is_search() && is_404() && $seplocation === "right" | 103–134 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), is_archive(), is_archive(), is_search(), is_404(), __(), explode(), apply_filters(), array_reverse(), apply_filters() |
is_single() && is_category() && !is_tax() && !is_author() && $post_type_object && !is_search() && is_404() && $seplocation !== "right" | 105–134 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), post_type_archive_title(), is_archive(), is_archive(), is_search(), is_404(), __(), explode(), apply_filters(), apply_filters() |
is_single() && !is_post_type_archive() && is_category() && !is_tax() && !is_author() && is_archive() && !empty($year) && !empty($monthnum) && empty($day) && !is_search() && !is_404() && $seplocation !== "right" | 106–130 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), is_archive(), is_archive(), ->get_month(), is_search(), is_404(), explode(), apply_filters(), apply_filters() |
is_single() && is_category() && !is_tax() && !is_author() && $post_type_object && !is_search() && !is_404() && $seplocation === "right" | 106–135 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), post_type_archive_title(), is_archive(), is_archive(), is_search(), is_404(), explode(), apply_filters(), array_reverse(), apply_filters() |
is_single() && !is_post_type_archive() && is_category() && !is_tax() && !is_author() && is_search() && !is_404() && $seplocation !== "right" | 106–137 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), is_archive(), is_archive(), is_search(), __(), strip_tags(), sprintf(), is_404(), explode(), apply_filters(), apply_filters() |
148 further outcomes, up to 166 instructions
is_single() && is_category() && !is_tax() && is_author() && !is_search() && is_404() && $seplocation === "right" | 106–134 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), is_post_type_archive(), is_archive(), is_archive(), is_search(), is_404(), __(), explode(), apply_filters(), array_reverse(), apply_filters() |
is_single() && !is_post_type_archive() && is_category() && !is_tax() && !is_author() && is_archive() && !empty($year) && empty($monthnum) && !empty($day) && !is_search() && !is_404() && $seplocation !== "right" | 107–131 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), is_archive(), is_archive(), zeroise(), is_search(), is_404(), explode(), apply_filters(), apply_filters() |
is_single() && is_category() && !is_tax() && is_author() && is_archive() && !empty($year) && !empty($monthnum) && empty($day) && !is_search() && !is_404() && $seplocation !== "right" | 109–130 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), is_post_type_archive(), is_archive(), is_archive(), ->get_month(), is_search(), is_404(), explode(), apply_filters(), apply_filters() |
is_single() && is_category() && !is_tax() && is_author() && is_search() && !is_404() && $seplocation !== "right" | 109–137 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), is_post_type_archive(), is_archive(), is_archive(), is_search(), __(), strip_tags(), sprintf(), is_404(), explode(), apply_filters(), apply_filters() |
is_single() && !is_post_type_archive() && is_category() && !is_tax() && !is_author() && is_archive() && !empty($year) && !empty($monthnum) && empty($day) && !is_search() && is_404() && $seplocation !== "right" | 110–134 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), is_archive(), is_archive(), ->get_month(), is_search(), is_404(), __(), explode(), apply_filters(), apply_filters() |
is_single() && is_category() && !is_tax() && is_author() && is_archive() && !empty($year) && empty($monthnum) && !empty($day) && !is_search() && !is_404() && $seplocation !== "right" | 110–131 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), is_post_type_archive(), is_archive(), is_archive(), zeroise(), is_search(), is_404(), explode(), apply_filters(), apply_filters() |
is_single() && is_category() && !is_tax() && !is_author() && $post_type_object && !is_search() && is_404() && $seplocation === "right" | 110–139 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), post_type_archive_title(), is_archive(), is_archive(), is_search(), is_404(), __(), explode(), apply_filters(), array_reverse(), apply_filters() |
is_single() && !is_post_type_archive() && is_category() && !is_tax() && !is_author() && is_search() && is_404() && $seplocation !== "right" | 110–141 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), is_archive(), is_archive(), is_search(), __(), strip_tags(), sprintf(), is_404(), __(), explode(), apply_filters(), apply_filters() |
is_single() && !is_post_type_archive() && is_category() && !is_tax() && !is_author() && is_archive() && !empty($year) && empty($monthnum) && !empty($day) && !is_search() && is_404() && $seplocation !== "right" | 111–135 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), is_archive(), is_archive(), zeroise(), is_search(), is_404(), __(), explode(), apply_filters(), apply_filters() |
is_single() && !is_post_type_archive() && is_category() && !is_tax() && !is_author() && is_archive() && !empty($year) && !empty($monthnum) && empty($day) && !is_search() && !is_404() && $seplocation === "right" | 111–135 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), is_archive(), is_archive(), ->get_month(), is_search(), is_404(), explode(), apply_filters(), array_reverse(), apply_filters() |
is_single() && !is_post_type_archive() && is_category() && !is_tax() && !is_author() && is_search() && !is_404() && $seplocation === "right" | 111–142 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), is_archive(), is_archive(), is_search(), __(), strip_tags(), sprintf(), is_404(), explode(), apply_filters(), array_reverse(), apply_filters() |
is_single() && !is_post_type_archive() && is_category() && !is_tax() && !is_author() && is_archive() && !empty($year) && empty($monthnum) && !empty($day) && !is_search() && !is_404() && $seplocation === "right" | 112–136 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), is_archive(), is_archive(), zeroise(), is_search(), is_404(), explode(), apply_filters(), array_reverse(), apply_filters() |
is_single() && !is_post_type_archive() && is_category() && !is_tax() && !is_author() && is_archive() && !empty($year) && !empty($monthnum) && !empty($day) && !is_search() && !is_404() && $seplocation !== "right" | 112–136 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), is_archive(), is_archive(), ->get_month(), zeroise(), is_search(), is_404(), explode(), apply_filters(), apply_filters() |
is_single() && is_category() && !is_tax() && !is_author() && $post_type_object && is_archive() && !empty($year) && !empty($monthnum) && empty($day) && !is_search() && !is_404() && $seplocation !== "right" | 113–135 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), post_type_archive_title(), is_archive(), is_archive(), ->get_month(), is_search(), is_404(), explode(), apply_filters(), apply_filters() |
is_single() && is_category() && !is_tax() && is_author() && is_archive() && !empty($year) && !empty($monthnum) && empty($day) && !is_search() && is_404() && $seplocation !== "right" | 113–134 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), is_post_type_archive(), is_archive(), is_archive(), ->get_month(), is_search(), is_404(), __(), explode(), apply_filters(), apply_filters() |
is_single() && is_category() && !is_tax() && !is_author() && $post_type_object && is_search() && !is_404() && $seplocation !== "right" | 113–142 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), post_type_archive_title(), is_archive(), is_archive(), is_search(), __(), strip_tags(), sprintf(), is_404(), explode(), apply_filters(), apply_filters() |
is_single() && is_category() && !is_tax() && is_author() && is_search() && is_404() && $seplocation !== "right" | 113–141 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), is_post_type_archive(), is_archive(), is_archive(), is_search(), __(), strip_tags(), sprintf(), is_404(), __(), explode(), apply_filters(), apply_filters() |
is_single() && !is_post_type_archive() && is_category() && !is_tax() && !is_author() && is_archive() && !empty($m) && $m && !is_search() && !is_404() && $seplocation !== "right" | 114–129 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), is_archive(), ->get_month(), is_archive(), is_search(), is_404(), explode(), apply_filters(), apply_filters() |
is_single() && is_category() && !is_tax() && !is_author() && $post_type_object && is_archive() && !empty($year) && empty($monthnum) && !empty($day) && !is_search() && !is_404() && $seplocation !== "right" | 114–136 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), post_type_archive_title(), is_archive(), is_archive(), zeroise(), is_search(), is_404(), explode(), apply_filters(), apply_filters() |
is_single() && is_category() && !is_tax() && is_author() && is_archive() && !empty($year) && empty($monthnum) && !empty($day) && !is_search() && is_404() && $seplocation !== "right" | 114–135 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), is_post_type_archive(), is_archive(), is_archive(), zeroise(), is_search(), is_404(), __(), explode(), apply_filters(), apply_filters() |
is_single() && is_category() && !is_tax() && is_author() && is_archive() && !empty($year) && !empty($monthnum) && empty($day) && !is_search() && !is_404() && $seplocation === "right" | 114–135 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), is_post_type_archive(), is_archive(), is_archive(), ->get_month(), is_search(), is_404(), explode(), apply_filters(), array_reverse(), apply_filters() |
is_single() && is_category() && !is_tax() && is_author() && is_search() && !is_404() && $seplocation === "right" | 114–142 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), is_post_type_archive(), is_archive(), is_archive(), is_search(), __(), strip_tags(), sprintf(), is_404(), explode(), apply_filters(), array_reverse(), apply_filters() |
is_single() && !is_post_type_archive() && is_category() && !is_tax() && !is_author() && is_archive() && !empty($year) && !empty($monthnum) && empty($day) && !is_search() && is_404() && $seplocation === "right" | 115–139 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), is_archive(), is_archive(), ->get_month(), is_search(), is_404(), __(), explode(), apply_filters(), array_reverse(), apply_filters() |
is_single() && is_category() && !is_tax() && is_author() && is_archive() && !empty($year) && empty($monthnum) && !empty($day) && !is_search() && !is_404() && $seplocation === "right" | 115–136 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), is_post_type_archive(), is_archive(), is_archive(), zeroise(), is_search(), is_404(), explode(), apply_filters(), array_reverse(), apply_filters() |
is_single() && is_category() && !is_tax() && is_author() && is_archive() && !empty($year) && !empty($monthnum) && !empty($day) && !is_search() && !is_404() && $seplocation !== "right" | 115–122 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), is_post_type_archive(), is_archive(), is_archive(), ->get_month(), zeroise(), is_search(), is_404(), explode(), apply_filters(), apply_filters() |
is_single() && !is_post_type_archive() && is_category() && !is_tax() && !is_author() && is_search() && is_404() && $seplocation === "right" | 115–146 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), is_archive(), is_archive(), is_search(), __(), strip_tags(), sprintf(), is_404(), __(), explode(), apply_filters(), array_reverse(), apply_filters() |
is_single() && !is_post_type_archive() && is_category() && !is_tax() && !is_author() && is_archive() && !empty($year) && empty($monthnum) && !empty($day) && !is_search() && is_404() && $seplocation === "right" | 116–140 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), is_archive(), is_archive(), zeroise(), is_search(), is_404(), __(), explode(), apply_filters(), array_reverse(), apply_filters() |
is_single() && !is_post_type_archive() && is_category() && !is_tax() && !is_author() && is_archive() && !empty($year) && !empty($monthnum) && !empty($day) && !is_search() && is_404() && $seplocation !== "right" | 116–140 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), is_archive(), is_archive(), ->get_month(), zeroise(), is_search(), is_404(), __(), explode(), apply_filters(), apply_filters() |
is_single() && !is_post_type_archive() && is_category() && !is_tax() && !is_author() && is_archive() && !empty($year) && !empty($monthnum) && !empty($day) && !is_search() && !is_404() && $seplocation === "right" | 117–141 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), is_archive(), is_archive(), ->get_month(), zeroise(), is_search(), is_404(), explode(), apply_filters(), array_reverse(), apply_filters() |
is_single() && is_category() && !is_tax() && !is_author() && $post_type_object && is_archive() && !empty($year) && !empty($monthnum) && empty($day) && !is_search() && is_404() && $seplocation !== "right" | 117–139 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), post_type_archive_title(), is_archive(), is_archive(), ->get_month(), is_search(), is_404(), __(), explode(), apply_filters(), apply_filters() |
is_single() && is_category() && !is_tax() && !is_author() && $post_type_object && is_search() && is_404() && $seplocation !== "right" | 117–146 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), post_type_archive_title(), is_archive(), is_archive(), is_search(), __(), strip_tags(), sprintf(), is_404(), __(), explode(), apply_filters(), apply_filters() |
is_single() && !is_post_type_archive() && is_category() && !is_tax() && !is_author() && is_archive() && !empty($m) && $m && !is_search() && is_404() && $seplocation !== "right" | 118–133 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), is_archive(), ->get_month(), is_archive(), is_search(), is_404(), __(), explode(), apply_filters(), apply_filters() |
is_single() && is_category() && !is_tax() && !is_author() && $post_type_object && is_archive() && !empty($year) && empty($monthnum) && !empty($day) && !is_search() && is_404() && $seplocation !== "right" | 118–140 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), post_type_archive_title(), is_archive(), is_archive(), zeroise(), is_search(), is_404(), __(), explode(), apply_filters(), apply_filters() |
is_single() && is_category() && !is_tax() && !is_author() && $post_type_object && is_archive() && !empty($year) && !empty($monthnum) && empty($day) && !is_search() && !is_404() && $seplocation === "right" | 118–140 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), post_type_archive_title(), is_archive(), is_archive(), ->get_month(), is_search(), is_404(), explode(), apply_filters(), array_reverse(), apply_filters() |
is_single() && !is_post_type_archive() && is_category() && !is_tax() && !is_author() && is_archive() && !empty($year) && !empty($monthnum) && empty($day) && is_search() && !is_404() && $seplocation !== "right" | 118–142 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), is_archive(), is_archive(), ->get_month(), is_search(), __(), strip_tags(), sprintf(), is_404(), explode(), apply_filters(), apply_filters() |
is_single() && is_category() && !is_tax() && is_author() && is_archive() && !empty($year) && !empty($monthnum) && empty($day) && !is_search() && is_404() && $seplocation === "right" | 118–139 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), is_post_type_archive(), is_archive(), is_archive(), ->get_month(), is_search(), is_404(), __(), explode(), apply_filters(), array_reverse(), apply_filters() |
is_single() && is_category() && !is_tax() && !is_author() && $post_type_object && is_search() && !is_404() && $seplocation === "right" | 118–147 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), post_type_archive_title(), is_archive(), is_archive(), is_search(), __(), strip_tags(), sprintf(), is_404(), explode(), apply_filters(), array_reverse(), apply_filters() |
is_single() && is_category() && !is_tax() && is_author() && is_search() && is_404() && $seplocation === "right" | 118–146 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), is_post_type_archive(), is_archive(), is_archive(), is_search(), __(), strip_tags(), sprintf(), is_404(), __(), explode(), apply_filters(), array_reverse(), apply_filters() |
is_single() && !is_post_type_archive() && is_category() && !is_tax() && !is_author() && is_archive() && !empty($m) && $m && !is_search() && !is_404() && $seplocation === "right" | 119–134 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), is_archive(), ->get_month(), is_archive(), is_search(), is_404(), explode(), apply_filters(), array_reverse(), apply_filters() |
is_single() && is_category() && !is_tax() && !is_author() && $post_type_object && is_archive() && !empty($year) && empty($monthnum) && !empty($day) && !is_search() && !is_404() && $seplocation === "right" | 119–141 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), post_type_archive_title(), is_archive(), is_archive(), zeroise(), is_search(), is_404(), explode(), apply_filters(), array_reverse(), apply_filters() |
is_single() && is_category() && !is_tax() && !is_author() && $post_type_object && is_archive() && !empty($year) && !empty($monthnum) && !empty($day) && !is_search() && !is_404() && $seplocation !== "right" | 119–141 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), post_type_archive_title(), is_archive(), is_archive(), ->get_month(), zeroise(), is_search(), is_404(), explode(), apply_filters(), apply_filters() |
is_single() && !is_post_type_archive() && is_category() && !is_tax() && !is_author() && is_archive() && !empty($year) && empty($monthnum) && !empty($day) && is_search() && !is_404() && $seplocation !== "right" | 119–143 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), is_archive(), is_archive(), zeroise(), is_search(), __(), strip_tags(), sprintf(), is_404(), explode(), apply_filters(), apply_filters() |
is_single() && is_category() && !is_tax() && is_author() && is_archive() && !empty($year) && empty($monthnum) && !empty($day) && !is_search() && is_404() && $seplocation === "right" | 119–140 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), is_post_type_archive(), is_archive(), is_archive(), zeroise(), is_search(), is_404(), __(), explode(), apply_filters(), array_reverse(), apply_filters() |
is_single() && is_category() && !is_tax() && is_author() && is_archive() && !empty($year) && !empty($monthnum) && !empty($day) && !is_search() && is_404() && $seplocation !== "right" | 119–126 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), is_post_type_archive(), is_archive(), is_archive(), ->get_month(), zeroise(), is_search(), is_404(), __(), explode(), apply_filters(), apply_filters() |
is_single() && is_category() && !is_tax() && is_author() && is_archive() && !empty($year) && !empty($monthnum) && !empty($day) && !is_search() && !is_404() && $seplocation === "right" | 120–127 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), is_post_type_archive(), is_archive(), is_archive(), ->get_month(), zeroise(), is_search(), is_404(), explode(), apply_filters(), array_reverse(), apply_filters() |
is_single() && is_category() && !is_tax() && !is_author() && $post_type_object && is_archive() && !empty($m) && $m && !is_search() && !is_404() && $seplocation !== "right" | 121–134 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), post_type_archive_title(), is_archive(), ->get_month(), is_archive(), is_search(), is_404(), explode(), apply_filters(), apply_filters() |
is_single() && !is_post_type_archive() && is_category() && !is_tax() && !is_author() && is_archive() && !empty($year) && !empty($monthnum) && !empty($day) && !is_search() && is_404() && $seplocation === "right" | 121–145 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), is_archive(), is_archive(), ->get_month(), zeroise(), is_search(), is_404(), __(), explode(), apply_filters(), array_reverse(), apply_filters() |
is_single() && is_category() && !is_tax() && is_author() && is_archive() && !empty($year) && !empty($monthnum) && empty($day) && is_search() && !is_404() && $seplocation !== "right" | 121–142 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), is_post_type_archive(), is_archive(), is_archive(), ->get_month(), is_search(), __(), strip_tags(), sprintf(), is_404(), explode(), apply_filters(), apply_filters() |
is_single() && is_category() && !is_tax() && !is_author() && $post_type_object && is_archive() && !empty($year) && !empty($monthnum) && empty($day) && !is_search() && is_404() && $seplocation === "right" | 122–144 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), post_type_archive_title(), is_archive(), is_archive(), ->get_month(), is_search(), is_404(), __(), explode(), apply_filters(), array_reverse(), apply_filters() |
is_single() && !is_post_type_archive() && is_category() && !is_tax() && !is_author() && is_archive() && !empty($year) && !empty($monthnum) && empty($day) && is_search() && is_404() && $seplocation !== "right" | 122–146 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), is_archive(), is_archive(), ->get_month(), is_search(), __(), strip_tags(), sprintf(), is_404(), __(), explode(), apply_filters(), apply_filters() |
is_single() && is_category() && !is_tax() && is_author() && is_archive() && !empty($year) && empty($monthnum) && !empty($day) && is_search() && !is_404() && $seplocation !== "right" | 122–143 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), is_post_type_archive(), is_archive(), is_archive(), zeroise(), is_search(), __(), strip_tags(), sprintf(), is_404(), explode(), apply_filters(), apply_filters() |
is_single() && is_category() && !is_tax() && !is_author() && $post_type_object && is_search() && is_404() && $seplocation === "right" | 122–151 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), post_type_archive_title(), is_archive(), is_archive(), is_search(), __(), strip_tags(), sprintf(), is_404(), __(), explode(), apply_filters(), array_reverse(), apply_filters() |
is_single() && !is_post_type_archive() && is_category() && !is_tax() && !is_author() && is_archive() && !empty($m) && $m && !is_search() && is_404() && $seplocation === "right" | 123–138 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), is_archive(), ->get_month(), is_archive(), is_search(), is_404(), __(), explode(), apply_filters(), array_reverse(), apply_filters() |
is_single() && is_category() && !is_tax() && !is_author() && $post_type_object && is_archive() && !empty($year) && empty($monthnum) && !empty($day) && !is_search() && is_404() && $seplocation === "right" | 123–145 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), post_type_archive_title(), is_archive(), is_archive(), zeroise(), is_search(), is_404(), __(), explode(), apply_filters(), array_reverse(), apply_filters() |
is_single() && is_category() && !is_tax() && !is_author() && $post_type_object && is_archive() && !empty($year) && !empty($monthnum) && !empty($day) && !is_search() && is_404() && $seplocation !== "right" | 123–145 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), post_type_archive_title(), is_archive(), is_archive(), ->get_month(), zeroise(), is_search(), is_404(), __(), explode(), apply_filters(), apply_filters() |
is_single() && !is_post_type_archive() && is_category() && !is_tax() && !is_author() && is_archive() && !empty($year) && empty($monthnum) && !empty($day) && is_search() && is_404() && $seplocation !== "right" | 123–147 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), is_archive(), is_archive(), zeroise(), is_search(), __(), strip_tags(), sprintf(), is_404(), __(), explode(), apply_filters(), apply_filters() |
is_single() && !is_post_type_archive() && is_category() && !is_tax() && !is_author() && is_archive() && !empty($year) && !empty($monthnum) && empty($day) && is_search() && !is_404() && $seplocation === "right" | 123–147 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), is_archive(), is_archive(), ->get_month(), is_search(), __(), strip_tags(), sprintf(), is_404(), explode(), apply_filters(), array_reverse(), apply_filters() |
is_single() && is_category() && !is_tax() && !is_author() && $post_type_object && is_archive() && !empty($year) && !empty($monthnum) && !empty($day) && !is_search() && !is_404() && $seplocation === "right" | 124–146 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), post_type_archive_title(), is_archive(), is_archive(), ->get_month(), zeroise(), is_search(), is_404(), explode(), apply_filters(), array_reverse(), apply_filters() |
is_single() && !is_post_type_archive() && is_category() && !is_tax() && !is_author() && is_archive() && !empty($year) && empty($monthnum) && !empty($day) && is_search() && !is_404() && $seplocation === "right" | 124–148 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), is_archive(), is_archive(), zeroise(), is_search(), __(), strip_tags(), sprintf(), is_404(), explode(), apply_filters(), array_reverse(), apply_filters() |
is_single() && !is_post_type_archive() && is_category() && !is_tax() && !is_author() && is_archive() && !empty($year) && !empty($monthnum) && !empty($day) && is_search() && !is_404() && $seplocation !== "right" | 124–148 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), is_archive(), is_archive(), ->get_month(), zeroise(), is_search(), __(), strip_tags(), sprintf(), is_404(), explode(), apply_filters(), apply_filters() |
is_single() && is_category() && !is_tax() && is_author() && is_archive() && !empty($year) && !empty($monthnum) && !empty($day) && !is_search() && is_404() && $seplocation === "right" | 124–131 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), is_post_type_archive(), is_archive(), is_archive(), ->get_month(), zeroise(), is_search(), is_404(), __(), explode(), apply_filters(), array_reverse(), apply_filters() |
is_single() && is_category() && !is_tax() && !is_author() && $post_type_object && is_archive() && !empty($m) && $m && !is_search() && is_404() && $seplocation !== "right" | 125–138 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), post_type_archive_title(), is_archive(), ->get_month(), is_archive(), is_search(), is_404(), __(), explode(), apply_filters(), apply_filters() |
is_single() && is_category() && !is_tax() && !is_author() && $post_type_object && is_archive() && !empty($year) && !empty($monthnum) && empty($day) && is_search() && !is_404() && $seplocation !== "right" | 125–147 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), post_type_archive_title(), is_archive(), is_archive(), ->get_month(), is_search(), __(), strip_tags(), sprintf(), is_404(), explode(), apply_filters(), apply_filters() |
is_single() && is_category() && !is_tax() && is_author() && is_archive() && !empty($year) && !empty($monthnum) && empty($day) && is_search() && is_404() && $seplocation !== "right" | 125–146 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), is_post_type_archive(), is_archive(), is_archive(), ->get_month(), is_search(), __(), strip_tags(), sprintf(), is_404(), __(), explode(), apply_filters(), apply_filters() |
is_single() && !is_post_type_archive() && is_category() && !is_tax() && !is_author() && is_archive() && !empty($m) && $m && !empty($year) && !empty($monthnum) && empty($day) && !is_search() && !is_404() && $seplocation !== "right" | 126–134 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), is_archive(), ->get_month(), is_archive(), ->get_month(), is_search(), is_404(), explode(), apply_filters(), apply_filters() |
is_single() && is_category() && !is_tax() && !is_author() && $post_type_object && is_archive() && !empty($m) && $m && !is_search() && !is_404() && $seplocation === "right" | 126–139 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), post_type_archive_title(), is_archive(), ->get_month(), is_archive(), is_search(), is_404(), explode(), apply_filters(), array_reverse(), apply_filters() |
is_single() && !is_post_type_archive() && is_category() && !is_tax() && !is_author() && is_archive() && !empty($m) && $m && is_search() && !is_404() && $seplocation !== "right" | 126–141 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), is_archive(), ->get_month(), is_archive(), is_search(), __(), strip_tags(), sprintf(), is_404(), explode(), apply_filters(), apply_filters() |
is_single() && is_category() && !is_tax() && !is_author() && $post_type_object && is_archive() && !empty($year) && empty($monthnum) && !empty($day) && is_search() && !is_404() && $seplocation !== "right" | 126–148 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), post_type_archive_title(), is_archive(), is_archive(), zeroise(), is_search(), __(), strip_tags(), sprintf(), is_404(), explode(), apply_filters(), apply_filters() |
is_single() && is_category() && !is_tax() && is_author() && is_archive() && !empty($year) && empty($monthnum) && !empty($day) && is_search() && is_404() && $seplocation !== "right" | 126–147 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), is_post_type_archive(), is_archive(), is_archive(), zeroise(), is_search(), __(), strip_tags(), sprintf(), is_404(), __(), explode(), apply_filters(), apply_filters() |
is_single() && is_category() && !is_tax() && is_author() && is_archive() && !empty($year) && !empty($monthnum) && empty($day) && is_search() && !is_404() && $seplocation === "right" | 126–147 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), is_post_type_archive(), is_archive(), is_archive(), ->get_month(), is_search(), __(), strip_tags(), sprintf(), is_404(), explode(), apply_filters(), array_reverse(), apply_filters() |
is_single() && !is_post_type_archive() && is_category() && !is_tax() && !is_author() && is_archive() && !empty($m) && $m && !empty($year) && empty($monthnum) && !empty($day) && !is_search() && !is_404() && $seplocation !== "right" | 127–135 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), is_archive(), ->get_month(), is_archive(), zeroise(), is_search(), is_404(), explode(), apply_filters(), apply_filters() |
is_single() && !is_post_type_archive() && is_category() && !is_tax() && !is_author() && is_archive() && !empty($year) && !empty($monthnum) && empty($day) && is_search() && is_404() && $seplocation === "right" | 127–151 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), is_archive(), is_archive(), ->get_month(), is_search(), __(), strip_tags(), sprintf(), is_404(), __(), explode(), apply_filters(), array_reverse(), apply_filters() |
is_single() && is_category() && !is_tax() && is_author() && is_archive() && !empty($year) && empty($monthnum) && !empty($day) && is_search() && !is_404() && $seplocation === "right" | 127–148 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), is_post_type_archive(), is_archive(), is_archive(), zeroise(), is_search(), __(), strip_tags(), sprintf(), is_404(), explode(), apply_filters(), array_reverse(), apply_filters() |
is_single() && is_category() && !is_tax() && is_author() && is_archive() && !empty($year) && !empty($monthnum) && !empty($day) && is_search() && !is_404() && $seplocation !== "right" | 127–134 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), is_post_type_archive(), is_archive(), is_archive(), ->get_month(), zeroise(), is_search(), __(), strip_tags(), sprintf(), is_404(), explode(), apply_filters(), apply_filters() |
is_single() && is_category() && !is_tax() && !is_author() && $post_type_object && is_archive() && !empty($year) && !empty($monthnum) && !empty($day) && !is_search() && is_404() && $seplocation === "right" | 128–150 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), post_type_archive_title(), is_archive(), is_archive(), ->get_month(), zeroise(), is_search(), is_404(), __(), explode(), apply_filters(), array_reverse(), apply_filters() |
is_single() && !is_post_type_archive() && is_category() && !is_tax() && !is_author() && is_archive() && !empty($year) && empty($monthnum) && !empty($day) && is_search() && is_404() && $seplocation === "right" | 128–152 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), is_archive(), is_archive(), zeroise(), is_search(), __(), strip_tags(), sprintf(), is_404(), __(), explode(), apply_filters(), array_reverse(), apply_filters() |
is_single() && !is_post_type_archive() && is_category() && !is_tax() && !is_author() && is_archive() && !empty($year) && !empty($monthnum) && !empty($day) && is_search() && is_404() && $seplocation !== "right" | 128–152 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), is_archive(), is_archive(), ->get_month(), zeroise(), is_search(), __(), strip_tags(), sprintf(), is_404(), __(), explode(), apply_filters(), apply_filters() |
is_single() && !is_post_type_archive() && is_category() && !is_tax() && !is_author() && is_archive() && !empty($year) && !empty($monthnum) && !empty($day) && is_search() && !is_404() && $seplocation === "right" | 129–153 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), is_archive(), is_archive(), ->get_month(), zeroise(), is_search(), __(), strip_tags(), sprintf(), is_404(), explode(), apply_filters(), array_reverse(), apply_filters() |
is_single() && is_category() && !is_tax() && !is_author() && $post_type_object && is_archive() && !empty($year) && !empty($monthnum) && empty($day) && is_search() && is_404() && $seplocation !== "right" | 129–151 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), post_type_archive_title(), is_archive(), is_archive(), ->get_month(), is_search(), __(), strip_tags(), sprintf(), is_404(), __(), explode(), apply_filters(), apply_filters() |
is_single() && !is_post_type_archive() && is_category() && !is_tax() && !is_author() && is_archive() && !empty($m) && $m && !empty($year) && !empty($monthnum) && empty($day) && !is_search() && is_404() && $seplocation !== "right" | 130–138 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), is_archive(), ->get_month(), is_archive(), ->get_month(), is_search(), is_404(), __(), explode(), apply_filters(), apply_filters() |
is_single() && is_category() && !is_tax() && !is_author() && $post_type_object && is_archive() && !empty($m) && $m && !is_search() && is_404() && $seplocation === "right" | 130–143 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), post_type_archive_title(), is_archive(), ->get_month(), is_archive(), is_search(), is_404(), __(), explode(), apply_filters(), array_reverse(), apply_filters() |
is_single() && !is_post_type_archive() && is_category() && !is_tax() && !is_author() && is_archive() && !empty($m) && $m && is_search() && is_404() && $seplocation !== "right" | 130–145 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), is_archive(), ->get_month(), is_archive(), is_search(), __(), strip_tags(), sprintf(), is_404(), __(), explode(), apply_filters(), apply_filters() |
is_single() && is_category() && !is_tax() && !is_author() && $post_type_object && is_archive() && !empty($year) && empty($monthnum) && !empty($day) && is_search() && is_404() && $seplocation !== "right" | 130–152 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), post_type_archive_title(), is_archive(), is_archive(), zeroise(), is_search(), __(), strip_tags(), sprintf(), is_404(), __(), explode(), apply_filters(), apply_filters() |
is_single() && is_category() && !is_tax() && !is_author() && $post_type_object && is_archive() && !empty($year) && !empty($monthnum) && empty($day) && is_search() && !is_404() && $seplocation === "right" | 130–152 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), post_type_archive_title(), is_archive(), is_archive(), ->get_month(), is_search(), __(), strip_tags(), sprintf(), is_404(), explode(), apply_filters(), array_reverse(), apply_filters() |
is_single() && is_category() && !is_tax() && is_author() && is_archive() && !empty($year) && !empty($monthnum) && empty($day) && is_search() && is_404() && $seplocation === "right" | 130–151 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), is_post_type_archive(), is_archive(), is_archive(), ->get_month(), is_search(), __(), strip_tags(), sprintf(), is_404(), __(), explode(), apply_filters(), array_reverse(), apply_filters() |
is_single() && !is_post_type_archive() && is_category() && !is_tax() && !is_author() && is_archive() && !empty($m) && $m && !empty($year) && empty($monthnum) && !empty($day) && !is_search() && is_404() && $seplocation !== "right" | 131–139 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), is_archive(), ->get_month(), is_archive(), zeroise(), is_search(), is_404(), __(), explode(), apply_filters(), apply_filters() |
is_single() && !is_post_type_archive() && is_category() && !is_tax() && !is_author() && is_archive() && !empty($m) && $m && !empty($year) && !empty($monthnum) && empty($day) && !is_search() && !is_404() && $seplocation === "right" | 131–139 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), is_archive(), ->get_month(), is_archive(), ->get_month(), is_search(), is_404(), explode(), apply_filters(), array_reverse(), apply_filters() |
is_single() && !is_post_type_archive() && is_category() && !is_tax() && !is_author() && is_archive() && !empty($m) && $m && is_search() && !is_404() && $seplocation === "right" | 131–146 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), is_archive(), ->get_month(), is_archive(), is_search(), __(), strip_tags(), sprintf(), is_404(), explode(), apply_filters(), array_reverse(), apply_filters() |
is_single() && is_category() && !is_tax() && !is_author() && $post_type_object && is_archive() && !empty($year) && empty($monthnum) && !empty($day) && is_search() && !is_404() && $seplocation === "right" | 131–153 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), post_type_archive_title(), is_archive(), is_archive(), zeroise(), is_search(), __(), strip_tags(), sprintf(), is_404(), explode(), apply_filters(), array_reverse(), apply_filters() |
is_single() && is_category() && !is_tax() && !is_author() && $post_type_object && is_archive() && !empty($year) && !empty($monthnum) && !empty($day) && is_search() && !is_404() && $seplocation !== "right" | 131–153 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), post_type_archive_title(), is_archive(), is_archive(), ->get_month(), zeroise(), is_search(), __(), strip_tags(), sprintf(), is_404(), explode(), apply_filters(), apply_filters() |
is_single() && is_category() && !is_tax() && is_author() && is_archive() && !empty($year) && empty($monthnum) && !empty($day) && is_search() && is_404() && $seplocation === "right" | 131–152 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), is_post_type_archive(), is_archive(), is_archive(), zeroise(), is_search(), __(), strip_tags(), sprintf(), is_404(), __(), explode(), apply_filters(), array_reverse(), apply_filters() |
is_single() && is_category() && !is_tax() && is_author() && is_archive() && !empty($year) && !empty($monthnum) && !empty($day) && is_search() && is_404() && $seplocation !== "right" | 131–138 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), is_post_type_archive(), is_archive(), is_archive(), ->get_month(), zeroise(), is_search(), __(), strip_tags(), sprintf(), is_404(), __(), explode(), apply_filters(), apply_filters() |
is_single() && !is_post_type_archive() && is_category() && !is_tax() && !is_author() && is_archive() && !empty($m) && $m && !empty($year) && empty($monthnum) && !empty($day) && !is_search() && !is_404() && $seplocation === "right" | 132–140 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), is_archive(), ->get_month(), is_archive(), zeroise(), is_search(), is_404(), explode(), apply_filters(), array_reverse(), apply_filters() |
is_single() && !is_post_type_archive() && is_category() && !is_tax() && !is_author() && is_archive() && !empty($m) && $m && !empty($year) && !empty($monthnum) && !empty($day) && !is_search() && !is_404() && $seplocation !== "right" | 132–140 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), is_archive(), ->get_month(), is_archive(), ->get_month(), zeroise(), is_search(), is_404(), explode(), apply_filters(), apply_filters() |
is_single() && is_category() && !is_tax() && is_author() && is_archive() && !empty($year) && !empty($monthnum) && !empty($day) && is_search() && !is_404() && $seplocation === "right" | 132–139 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), is_post_type_archive(), is_archive(), is_archive(), ->get_month(), zeroise(), is_search(), __(), strip_tags(), sprintf(), is_404(), explode(), apply_filters(), array_reverse(), apply_filters() |
is_single() && is_category() && !is_tax() && !is_author() && $post_type_object && is_archive() && !empty($m) && $m && !empty($year) && !empty($monthnum) && empty($day) && !is_search() && !is_404() && $seplocation !== "right" | 133–139 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), post_type_archive_title(), is_archive(), ->get_month(), is_archive(), ->get_month(), is_search(), is_404(), explode(), apply_filters(), apply_filters() |
is_single() && is_category() && !is_tax() && !is_author() && $post_type_object && is_archive() && !empty($m) && $m && is_search() && !is_404() && $seplocation !== "right" | 133–146 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), post_type_archive_title(), is_archive(), ->get_month(), is_archive(), is_search(), __(), strip_tags(), sprintf(), is_404(), explode(), apply_filters(), apply_filters() |
is_single() && !is_post_type_archive() && is_category() && !is_tax() && !is_author() && is_archive() && !empty($year) && !empty($monthnum) && !empty($day) && is_search() && is_404() && $seplocation === "right" | 133–157 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), is_archive(), is_archive(), ->get_month(), zeroise(), is_search(), __(), strip_tags(), sprintf(), is_404(), __(), explode(), apply_filters(), array_reverse(), apply_filters() |
is_single() && is_category() && !is_tax() && !is_author() && $post_type_object && is_archive() && !empty($m) && $m && !empty($year) && empty($monthnum) && !empty($day) && !is_search() && !is_404() && $seplocation !== "right" | 134–140 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), post_type_archive_title(), is_archive(), ->get_month(), is_archive(), zeroise(), is_search(), is_404(), explode(), apply_filters(), apply_filters() |
is_single() && is_category() && !is_tax() && !is_author() && $post_type_object && is_archive() && !empty($year) && !empty($monthnum) && empty($day) && is_search() && is_404() && $seplocation === "right" | 134–156 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), post_type_archive_title(), is_archive(), is_archive(), ->get_month(), is_search(), __(), strip_tags(), sprintf(), is_404(), __(), explode(), apply_filters(), array_reverse(), apply_filters() |
is_single() && !is_post_type_archive() && is_category() && !is_tax() && !is_author() && is_archive() && !empty($m) && $m && !empty($year) && !empty($monthnum) && empty($day) && !is_search() && is_404() && $seplocation === "right" | 135–143 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), is_archive(), ->get_month(), is_archive(), ->get_month(), is_search(), is_404(), __(), explode(), apply_filters(), array_reverse(), apply_filters() |
is_single() && !is_post_type_archive() && is_category() && !is_tax() && !is_author() && is_archive() && !empty($m) && $m && is_search() && is_404() && $seplocation === "right" | 135–150 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), is_archive(), ->get_month(), is_archive(), is_search(), __(), strip_tags(), sprintf(), is_404(), __(), explode(), apply_filters(), array_reverse(), apply_filters() |
is_single() && is_category() && !is_tax() && !is_author() && $post_type_object && is_archive() && !empty($year) && empty($monthnum) && !empty($day) && is_search() && is_404() && $seplocation === "right" | 135–157 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), post_type_archive_title(), is_archive(), is_archive(), zeroise(), is_search(), __(), strip_tags(), sprintf(), is_404(), __(), explode(), apply_filters(), array_reverse(), apply_filters() |
is_single() && is_category() && !is_tax() && !is_author() && $post_type_object && is_archive() && !empty($year) && !empty($monthnum) && !empty($day) && is_search() && is_404() && $seplocation !== "right" | 135–157 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), post_type_archive_title(), is_archive(), is_archive(), ->get_month(), zeroise(), is_search(), __(), strip_tags(), sprintf(), is_404(), __(), explode(), apply_filters(), apply_filters() |
is_single() && !is_post_type_archive() && is_category() && !is_tax() && !is_author() && is_archive() && !empty($m) && $m && !empty($year) && empty($monthnum) && !empty($day) && !is_search() && is_404() && $seplocation === "right" | 136–144 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), is_archive(), ->get_month(), is_archive(), zeroise(), is_search(), is_404(), __(), explode(), apply_filters(), array_reverse(), apply_filters() |
is_single() && !is_post_type_archive() && is_category() && !is_tax() && !is_author() && is_archive() && !empty($m) && $m && !empty($year) && !empty($monthnum) && !empty($day) && !is_search() && is_404() && $seplocation !== "right" | 136–144 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), is_archive(), ->get_month(), is_archive(), ->get_month(), zeroise(), is_search(), is_404(), __(), explode(), apply_filters(), apply_filters() |
is_single() && is_category() && !is_tax() && !is_author() && $post_type_object && is_archive() && !empty($year) && !empty($monthnum) && !empty($day) && is_search() && !is_404() && $seplocation === "right" | 136–158 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), post_type_archive_title(), is_archive(), is_archive(), ->get_month(), zeroise(), is_search(), __(), strip_tags(), sprintf(), is_404(), explode(), apply_filters(), array_reverse(), apply_filters() |
is_single() && is_category() && !is_tax() && is_author() && is_archive() && !empty($year) && !empty($monthnum) && !empty($day) && is_search() && is_404() && $seplocation === "right" | 136–143 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), is_post_type_archive(), is_archive(), is_archive(), ->get_month(), zeroise(), is_search(), __(), strip_tags(), sprintf(), is_404(), __(), explode(), apply_filters(), array_reverse(), apply_filters() |
is_single() && !is_post_type_archive() && is_category() && !is_tax() && !is_author() && is_archive() && !empty($m) && $m && !empty($year) && !empty($monthnum) && !empty($day) && !is_search() && !is_404() && $seplocation === "right" | 137–145 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), is_archive(), ->get_month(), is_archive(), ->get_month(), zeroise(), is_search(), is_404(), explode(), apply_filters(), array_reverse(), apply_filters() |
is_single() && is_category() && !is_tax() && !is_author() && $post_type_object && is_archive() && !empty($m) && $m && !empty($year) && !empty($monthnum) && empty($day) && !is_search() && is_404() && $seplocation !== "right" | 137–143 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), post_type_archive_title(), is_archive(), ->get_month(), is_archive(), ->get_month(), is_search(), is_404(), __(), explode(), apply_filters(), apply_filters() |
is_single() && is_category() && !is_tax() && !is_author() && $post_type_object && is_archive() && !empty($m) && $m && is_search() && is_404() && $seplocation !== "right" | 137–150 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), post_type_archive_title(), is_archive(), ->get_month(), is_archive(), is_search(), __(), strip_tags(), sprintf(), is_404(), __(), explode(), apply_filters(), apply_filters() |
is_single() && is_category() && !is_tax() && !is_author() && $post_type_object && is_archive() && !empty($m) && $m && !empty($year) && empty($monthnum) && !empty($day) && !is_search() && is_404() && $seplocation !== "right" | 138–144 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), post_type_archive_title(), is_archive(), ->get_month(), is_archive(), zeroise(), is_search(), is_404(), __(), explode(), apply_filters(), apply_filters() |
is_single() && is_category() && !is_tax() && !is_author() && $post_type_object && is_archive() && !empty($m) && $m && !empty($year) && !empty($monthnum) && empty($day) && !is_search() && !is_404() && $seplocation === "right" | 138–144 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), post_type_archive_title(), is_archive(), ->get_month(), is_archive(), ->get_month(), is_search(), is_404(), explode(), apply_filters(), array_reverse(), apply_filters() |
is_single() && !is_post_type_archive() && is_category() && !is_tax() && !is_author() && is_archive() && !empty($m) && $m && !empty($year) && !empty($monthnum) && empty($day) && is_search() && !is_404() && $seplocation !== "right" | 138–146 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), is_archive(), ->get_month(), is_archive(), ->get_month(), is_search(), __(), strip_tags(), sprintf(), is_404(), explode(), apply_filters(), apply_filters() |
is_single() && is_category() && !is_tax() && !is_author() && $post_type_object && is_archive() && !empty($m) && $m && is_search() && !is_404() && $seplocation === "right" | 138–151 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), post_type_archive_title(), is_archive(), ->get_month(), is_archive(), is_search(), __(), strip_tags(), sprintf(), is_404(), explode(), apply_filters(), array_reverse(), apply_filters() |
is_single() && is_category() && !is_tax() && !is_author() && $post_type_object && is_archive() && !empty($m) && $m && !empty($year) && empty($monthnum) && !empty($day) && !is_search() && !is_404() && $seplocation === "right" | 139–145 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), post_type_archive_title(), is_archive(), ->get_month(), is_archive(), zeroise(), is_search(), is_404(), explode(), apply_filters(), array_reverse(), apply_filters() |
is_single() && is_category() && !is_tax() && !is_author() && $post_type_object && is_archive() && !empty($m) && $m && !empty($year) && !empty($monthnum) && !empty($day) && !is_search() && !is_404() && $seplocation !== "right" | 139–145 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), post_type_archive_title(), is_archive(), ->get_month(), is_archive(), ->get_month(), zeroise(), is_search(), is_404(), explode(), apply_filters(), apply_filters() |
is_single() && !is_post_type_archive() && is_category() && !is_tax() && !is_author() && is_archive() && !empty($m) && $m && !empty($year) && empty($monthnum) && !empty($day) && is_search() && !is_404() && $seplocation !== "right" | 139–147 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), is_archive(), ->get_month(), is_archive(), zeroise(), is_search(), __(), strip_tags(), sprintf(), is_404(), explode(), apply_filters(), apply_filters() |
is_single() && is_category() && !is_tax() && !is_author() && $post_type_object && is_archive() && !empty($year) && !empty($monthnum) && !empty($day) && is_search() && is_404() && $seplocation === "right" | 140–162 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), post_type_archive_title(), is_archive(), is_archive(), ->get_month(), zeroise(), is_search(), __(), strip_tags(), sprintf(), is_404(), __(), explode(), apply_filters(), array_reverse(), apply_filters() |
is_single() && !is_post_type_archive() && is_category() && !is_tax() && !is_author() && is_archive() && !empty($m) && $m && !empty($year) && !empty($monthnum) && !empty($day) && !is_search() && is_404() && $seplocation === "right" | 141–149 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), is_archive(), ->get_month(), is_archive(), ->get_month(), zeroise(), is_search(), is_404(), __(), explode(), apply_filters(), array_reverse(), apply_filters() |
is_single() && is_category() && !is_tax() && !is_author() && $post_type_object && is_archive() && !empty($m) && $m && !empty($year) && !empty($monthnum) && empty($day) && !is_search() && is_404() && $seplocation === "right" | 142–148 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), post_type_archive_title(), is_archive(), ->get_month(), is_archive(), ->get_month(), is_search(), is_404(), __(), explode(), apply_filters(), array_reverse(), apply_filters() |
is_single() && !is_post_type_archive() && is_category() && !is_tax() && !is_author() && is_archive() && !empty($m) && $m && !empty($year) && !empty($monthnum) && empty($day) && is_search() && is_404() && $seplocation !== "right" | 142–150 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), is_archive(), ->get_month(), is_archive(), ->get_month(), is_search(), __(), strip_tags(), sprintf(), is_404(), __(), explode(), apply_filters(), apply_filters() |
is_single() && is_category() && !is_tax() && !is_author() && $post_type_object && is_archive() && !empty($m) && $m && is_search() && is_404() && $seplocation === "right" | 142–155 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), post_type_archive_title(), is_archive(), ->get_month(), is_archive(), is_search(), __(), strip_tags(), sprintf(), is_404(), __(), explode(), apply_filters(), array_reverse(), apply_filters() |
is_single() && is_category() && !is_tax() && !is_author() && $post_type_object && is_archive() && !empty($m) && $m && !empty($year) && empty($monthnum) && !empty($day) && !is_search() && is_404() && $seplocation === "right" | 143–149 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), post_type_archive_title(), is_archive(), ->get_month(), is_archive(), zeroise(), is_search(), is_404(), __(), explode(), apply_filters(), array_reverse(), apply_filters() |
is_single() && is_category() && !is_tax() && !is_author() && $post_type_object && is_archive() && !empty($m) && $m && !empty($year) && !empty($monthnum) && !empty($day) && !is_search() && is_404() && $seplocation !== "right" | 143–149 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), post_type_archive_title(), is_archive(), ->get_month(), is_archive(), ->get_month(), zeroise(), is_search(), is_404(), __(), explode(), apply_filters(), apply_filters() |
is_single() && !is_post_type_archive() && is_category() && !is_tax() && !is_author() && is_archive() && !empty($m) && $m && !empty($year) && empty($monthnum) && !empty($day) && is_search() && is_404() && $seplocation !== "right" | 143–151 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), is_archive(), ->get_month(), is_archive(), zeroise(), is_search(), __(), strip_tags(), sprintf(), is_404(), __(), explode(), apply_filters(), apply_filters() |
is_single() && !is_post_type_archive() && is_category() && !is_tax() && !is_author() && is_archive() && !empty($m) && $m && !empty($year) && !empty($monthnum) && empty($day) && is_search() && !is_404() && $seplocation === "right" | 143–151 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), is_archive(), ->get_month(), is_archive(), ->get_month(), is_search(), __(), strip_tags(), sprintf(), is_404(), explode(), apply_filters(), array_reverse(), apply_filters() |
is_single() && is_category() && !is_tax() && !is_author() && $post_type_object && is_archive() && !empty($m) && $m && !empty($year) && !empty($monthnum) && !empty($day) && !is_search() && !is_404() && $seplocation === "right" | 144–150 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), post_type_archive_title(), is_archive(), ->get_month(), is_archive(), ->get_month(), zeroise(), is_search(), is_404(), explode(), apply_filters(), array_reverse(), apply_filters() |
is_single() && !is_post_type_archive() && is_category() && !is_tax() && !is_author() && is_archive() && !empty($m) && $m && !empty($year) && empty($monthnum) && !empty($day) && is_search() && !is_404() && $seplocation === "right" | 144–152 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), is_archive(), ->get_month(), is_archive(), zeroise(), is_search(), __(), strip_tags(), sprintf(), is_404(), explode(), apply_filters(), array_reverse(), apply_filters() |
is_single() && !is_post_type_archive() && is_category() && !is_tax() && !is_author() && is_archive() && !empty($m) && $m && !empty($year) && !empty($monthnum) && !empty($day) && is_search() && !is_404() && $seplocation !== "right" | 144–152 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), is_archive(), ->get_month(), is_archive(), ->get_month(), zeroise(), is_search(), __(), strip_tags(), sprintf(), is_404(), explode(), apply_filters(), apply_filters() |
is_single() && is_category() && !is_tax() && !is_author() && $post_type_object && is_archive() && !empty($m) && $m && !empty($year) && !empty($monthnum) && empty($day) && is_search() && !is_404() && $seplocation !== "right" | 145–151 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), post_type_archive_title(), is_archive(), ->get_month(), is_archive(), ->get_month(), is_search(), __(), strip_tags(), sprintf(), is_404(), explode(), apply_filters(), apply_filters() |
is_single() && is_category() && !is_tax() && !is_author() && $post_type_object && is_archive() && !empty($m) && $m && !empty($year) && empty($monthnum) && !empty($day) && is_search() && !is_404() && $seplocation !== "right" | 146–152 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), post_type_archive_title(), is_archive(), ->get_month(), is_archive(), zeroise(), is_search(), __(), strip_tags(), sprintf(), is_404(), explode(), apply_filters(), apply_filters() |
is_single() && !is_post_type_archive() && is_category() && !is_tax() && !is_author() && is_archive() && !empty($m) && $m && !empty($year) && !empty($monthnum) && empty($day) && is_search() && is_404() && $seplocation === "right" | 147–155 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), is_archive(), ->get_month(), is_archive(), ->get_month(), is_search(), __(), strip_tags(), sprintf(), is_404(), __(), explode(), apply_filters(), array_reverse(), apply_filters() |
is_single() && is_category() && !is_tax() && !is_author() && $post_type_object && is_archive() && !empty($m) && $m && !empty($year) && !empty($monthnum) && !empty($day) && !is_search() && is_404() && $seplocation === "right" | 148–154 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), post_type_archive_title(), is_archive(), ->get_month(), is_archive(), ->get_month(), zeroise(), is_search(), is_404(), __(), explode(), apply_filters(), array_reverse(), apply_filters() |
is_single() && !is_post_type_archive() && is_category() && !is_tax() && !is_author() && is_archive() && !empty($m) && $m && !empty($year) && empty($monthnum) && !empty($day) && is_search() && is_404() && $seplocation === "right" | 148–156 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), is_archive(), ->get_month(), is_archive(), zeroise(), is_search(), __(), strip_tags(), sprintf(), is_404(), __(), explode(), apply_filters(), array_reverse(), apply_filters() |
is_single() && !is_post_type_archive() && is_category() && !is_tax() && !is_author() && is_archive() && !empty($m) && $m && !empty($year) && !empty($monthnum) && !empty($day) && is_search() && is_404() && $seplocation !== "right" | 148–156 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), is_archive(), ->get_month(), is_archive(), ->get_month(), zeroise(), is_search(), __(), strip_tags(), sprintf(), is_404(), __(), explode(), apply_filters(), apply_filters() |
is_single() && !is_post_type_archive() && is_category() && !is_tax() && !is_author() && is_archive() && !empty($m) && $m && !empty($year) && !empty($monthnum) && !empty($day) && is_search() && !is_404() && $seplocation === "right" | 149–157 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), is_archive(), ->get_month(), is_archive(), ->get_month(), zeroise(), is_search(), __(), strip_tags(), sprintf(), is_404(), explode(), apply_filters(), array_reverse(), apply_filters() |
is_single() && is_category() && !is_tax() && !is_author() && $post_type_object && is_archive() && !empty($m) && $m && !empty($year) && !empty($monthnum) && empty($day) && is_search() && is_404() && $seplocation !== "right" | 149–155 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), post_type_archive_title(), is_archive(), ->get_month(), is_archive(), ->get_month(), is_search(), __(), strip_tags(), sprintf(), is_404(), __(), explode(), apply_filters(), apply_filters() |
is_single() && is_category() && !is_tax() && !is_author() && $post_type_object && is_archive() && !empty($m) && $m && !empty($year) && empty($monthnum) && !empty($day) && is_search() && is_404() && $seplocation !== "right" | 150–156 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), post_type_archive_title(), is_archive(), ->get_month(), is_archive(), zeroise(), is_search(), __(), strip_tags(), sprintf(), is_404(), __(), explode(), apply_filters(), apply_filters() |
is_single() && is_category() && !is_tax() && !is_author() && $post_type_object && is_archive() && !empty($m) && $m && !empty($year) && !empty($monthnum) && empty($day) && is_search() && !is_404() && $seplocation === "right" | 150–156 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), post_type_archive_title(), is_archive(), ->get_month(), is_archive(), ->get_month(), is_search(), __(), strip_tags(), sprintf(), is_404(), explode(), apply_filters(), array_reverse(), apply_filters() |
is_single() && is_category() && !is_tax() && !is_author() && $post_type_object && is_archive() && !empty($m) && $m && !empty($year) && empty($monthnum) && !empty($day) && is_search() && !is_404() && $seplocation === "right" | 151–157 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), post_type_archive_title(), is_archive(), ->get_month(), is_archive(), zeroise(), is_search(), __(), strip_tags(), sprintf(), is_404(), explode(), apply_filters(), array_reverse(), apply_filters() |
is_single() && is_category() && !is_tax() && !is_author() && $post_type_object && is_archive() && !empty($m) && $m && !empty($year) && !empty($monthnum) && !empty($day) && is_search() && !is_404() && $seplocation !== "right" | 151–157 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), post_type_archive_title(), is_archive(), ->get_month(), is_archive(), ->get_month(), zeroise(), is_search(), __(), strip_tags(), sprintf(), is_404(), explode(), apply_filters(), apply_filters() |
is_single() && !is_post_type_archive() && is_category() && !is_tax() && !is_author() && is_archive() && !empty($m) && $m && !empty($year) && !empty($monthnum) && !empty($day) && is_search() && is_404() && $seplocation === "right" | 153–161 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), is_archive(), ->get_month(), is_archive(), ->get_month(), zeroise(), is_search(), __(), strip_tags(), sprintf(), is_404(), __(), explode(), apply_filters(), array_reverse(), apply_filters() |
is_single() && is_category() && !is_tax() && !is_author() && $post_type_object && is_archive() && !empty($m) && $m && !empty($year) && !empty($monthnum) && empty($day) && is_search() && is_404() && $seplocation === "right" | 154–160 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), post_type_archive_title(), is_archive(), ->get_month(), is_archive(), ->get_month(), is_search(), __(), strip_tags(), sprintf(), is_404(), __(), explode(), apply_filters(), array_reverse(), apply_filters() |
is_single() && is_category() && !is_tax() && !is_author() && $post_type_object && is_archive() && !empty($m) && $m && !empty($year) && empty($monthnum) && !empty($day) && is_search() && is_404() && $seplocation === "right" | 155–161 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), post_type_archive_title(), is_archive(), ->get_month(), is_archive(), zeroise(), is_search(), __(), strip_tags(), sprintf(), is_404(), __(), explode(), apply_filters(), array_reverse(), apply_filters() |
is_single() && is_category() && !is_tax() && !is_author() && $post_type_object && is_archive() && !empty($m) && $m && !empty($year) && !empty($monthnum) && !empty($day) && is_search() && is_404() && $seplocation !== "right" | 155–161 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), post_type_archive_title(), is_archive(), ->get_month(), is_archive(), ->get_month(), zeroise(), is_search(), __(), strip_tags(), sprintf(), is_404(), __(), explode(), apply_filters(), apply_filters() |
is_single() && is_category() && !is_tax() && !is_author() && $post_type_object && is_archive() && !empty($m) && $m && !empty($year) && !empty($monthnum) && !empty($day) && is_search() && !is_404() && $seplocation === "right" | 156–162 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), post_type_archive_title(), is_archive(), ->get_month(), is_archive(), ->get_month(), zeroise(), is_search(), __(), strip_tags(), sprintf(), is_404(), explode(), apply_filters(), array_reverse(), apply_filters() |
is_single() && is_category() && !is_tax() && !is_author() && $post_type_object && is_archive() && !empty($m) && $m && !empty($year) && !empty($monthnum) && !empty($day) && is_search() && is_404() && $seplocation === "right" | 160–166 | get_query_var(), get_query_var(), get_query_var(), get_query_var(), get_query_var(), is_single(), single_post_title(), is_post_type_archive(), is_category(), single_term_title(), is_tax(), is_author(), is_post_type_archive(), post_type_archive_title(), is_archive(), ->get_month(), is_archive(), ->get_month(), zeroise(), is_search(), __(), strip_tags(), sprintf(), is_404(), __(), explode(), apply_filters(), array_reverse(), 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
| PHP | Compiled | Executed | Branches | Notes |
|---|---|---|---|---|
| 8.6-dev | 238 | 94–166 | 30 | |
| 8.5 | 238 | 94–166 | 30 | |
| 8.4 | 238 | 94–166 | 30 | 17 fewer instructions than PHP 8.3 |
| 8.3 | 255 | 97–180 | 30 | |
| 8.2 | 255 | 97–180 | 30 | |
| 8.1 | 255 | 97–180 | 30 | 2 fewer instructions than PHP 7.4 |
| 7.4 | 257 | 97–182 | 30 |
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 · 2
2 hooks fire while wp_title() runs, in this order:
- apply_filters( wp_title_parts )filterline 1439 (+100 into the body)
Filters the parts of the page title.
Uses · 22
- get_query_var()Retrieves the value of a query variable in the WP_Query class.
- is_single()Determines whether the query is for an existing single post.
- is_home()Determines whether the query is for the blog homepage.
- is_front_page()Determines whether the query is for the front page of the site.
- is_page()Determines whether the query is for an existing single page.
- single_post_title()Displays or retrieves page title for post.
- is_post_type_archive()Determines whether the query is for an existing post type archive page.
- get_post_type_object()Retrieves a post type object by name.
- post_type_archive_title()Displays or retrieves title for a post type archive.
- is_category()Determines whether the query is for an existing category archive page.
- is_tag()Determines whether the query is for an existing tag archive page.
- single_term_title()Displays or retrieves page title for taxonomy term archive.
Show all 22
- is_tax()Determines whether the query is for an existing custom taxonomy archive page.
- get_queried_object()Retrieves the currently queried object.
- get_taxonomy()Retrieves the taxonomy object of $taxonomy.
- is_author()Determines whether the query is for an existing author archive page.
- is_archive()Determines whether the query is for an existing archive page.
- zeroise()Add leading zeros when necessary.
- is_search()Determines whether the query is for a search.
- __()Retrieves the translation of $text.
- is_404()Determines whether the query has resulted in a 404 (returns no results).
- apply_filters()Calls the callback functions that have been added to a filter hook.
Source code
function wp_title( $sep = '»', $display = true, $seplocation = '' ) { global $wp_locale; $m = get_query_var( 'm' ); $year = get_query_var( 'year' ); $monthnum = get_query_var( 'monthnum' ); $day = get_query_var( 'day' ); $search = get_query_var( 's' ); $title = ''; $t_sep = '%WP_TITLE_SEP%'; // Temporary separator, for accurate flipping, if necessary. // If there is a post. if ( is_single() || ( is_home() && ! is_front_page() ) || ( is_page() && ! is_front_page() ) ) { $title = single_post_title( '', false ); } // If there's a post type archive. if ( is_post_type_archive() ) { $post_type = get_query_var( 'post_type' ); if ( is_array( $post_type ) ) { $post_type = reset( $post_type ); } $post_type_object = get_post_type_object( $post_type ); if ( ! $post_type_object->has_archive ) { $title = post_type_archive_title( '', false ); } } // If there's a category or tag. if ( is_category() || is_tag() ) { $title = single_term_title( '', false ); } // If there's a taxonomy. if ( is_tax() ) { $term = get_queried_object(); if ( $term ) { $tax = get_taxonomy( $term->taxonomy ); $title = single_term_title( $tax->labels->name . $t_sep, false ); } } // If there's an author. if ( is_author() && ! is_post_type_archive() ) { $author = get_queried_object(); if ( $author ) { $title = $author->display_name; } } // Post type archives with has_archive should override terms. if ( is_post_type_archive() && $post_type_object->has_archive ) { $title = post_type_archive_title( '', false ); } // If there's a month. if ( is_archive() && ! empty( $m ) ) { $my_year = substr( $m, 0, 4 ); $my_month = substr( $m, 4, 2 ); $my_day = (int) substr( $m, 6, 2 ); $title = $my_year . ( $my_month ? $t_sep . $wp_locale->get_month( $my_month ) : '' ) . ( $my_day ? $t_sep . $my_day : '' ); } // If there's a year. if ( is_archive() && ! empty( $year ) ) { $title = $year; if ( ! empty( $monthnum ) ) { $title .= $t_sep . $wp_locale->get_month( $monthnum ); } if ( ! empty( $day ) ) { $title .= $t_sep . zeroise( $day, 2 ); } } // If it's a search. if ( is_search() ) { /* translators: 1: Separator, 2: Search query. */Changelog
Introduced in 1.0.0. One change between 6.7.7 and 7.1.0.
Signature, return type and hooks compared across 5 parsed releases.
string|void to string|null.verified against sourceAbout this page
- Parsed data
- Generated from the wordpress-develop 6.7.7 tag, from
src/wp-includes/general-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.