Skip to content

Instantly share code, notes, and snippets.

@softiconic
Last active December 2, 2023 18:41
Show Gist options
  • Save softiconic/516d6613538c6b4c87cbeb5a11a0764b to your computer and use it in GitHub Desktop.
Save softiconic/516d6613538c6b4c87cbeb5a11a0764b to your computer and use it in GitHub Desktop.
Elementor not found - query.
add_action('elementor/query/query_results', function($query) {
$total = $query->found_posts;
if ($total == 0) {
echo '<p class="text-align-center">No items found.</p>';
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment