golden hour
/home/godaofbq/besthyperbaric.com/wp-content/plugins/oxygen/plugin/wp-query-control
⬆️ Go Up
Upload
File/Folder
Size
Actions
.htaccess
420 B
Del
OK
base.php
132 B
Del
OK
post-types.php
892 B
Del
OK
query-control.php
12.94 KB
Del
OK
util.php
534 B
Del
OK
Edit: util.php
<?php /** * @param boolean $isCustomQueryUsed * @param boolean $isPaginationEnabled * @param boolean $isArchive * @return void */ function showWarningInBuilderForImproperUseOfPaginationAndCustomQueriesOnArchives($isCustomQueryUsed, $isPaginationEnabled, $isArchive) { if (!\Breakdance\isRequestFromBuilderSsr()) { return; } if ($isArchive && $isCustomQueryUsed && $isPaginationEnabled) { echo "<div class='bde-ssr-error'>Pagination with Custom Queries in Archives isn't supported</div> "; } }
Save