How to Enable Maintenance Mode on Your...
This WordPress snippet enables maintenance mode, displaying a customizable message to...

WPCodeBox
719
This Oxygen Builder condition allows you to display elements based on search query results, perfect for showing suggestions or content in search results templates when a query returns no results.
<?php
add_action('plugins_loaded', function () {
if (function_exists('oxygen_vsb_register_condition')) {
global $oxy_condition_operators;
oxygen_vsb_register_condition('Has Results', array('options' => array('true', 'false'), 'custom' => false), array('=='), 'search_has_results_callback', 'Search');
function search_has_results_callback($value, $operator)
{
global $wp_query;
$posts_found = $wp_query->found_posts;
if ($value == "true" && $posts_found > 0) {
return true;
} else if ($value == "false" && $posts_found == 0) {
return true;
}
}
}
});





