Thread Starter
Euge
(@gnbrndn)
Hi, thanks for the reply. That’s the reason, there’s no request coming out of the page. Thanks for help. Here is my code:
<?php
add_menu_page ( 'Recent Searches Page', 'Recent Searches', 'manage_options', 'recent-searches', 'recent_searches_init', '
dashicons-search');
function recent_searches_init() {
?>
<div class='wrap'>
<h1>Recent Searches</h1>
<?php do_shortcode("[dbview name='Search Log View' pagesize=10]"); ?>
</div>
<?php
}