You appear to be a bot. Output may be restricted
Description
Run the queries and display results
Usage
$string = oiksc_404_handler::perform_queries( $atts );
Parameters
- $atts
- ( array ) required –
Returns
string Generated HTMLSource
File name: oik-shortcodes/classes/class-oiksc-404-handler.phpLines:
1 to 14 of 14
function perform_queries( $atts ) { oik_require( "includes/bw_posts.php" ); oik_require( "shortcodes/oik-navi.php" ); $posts = bw_get_posts( $atts ); if ( $posts ) { $text = "We couldn't find exactly what you were looking for. Here are some possibilities." ; $text .= bw_navi( $atts ); } else { $text = "We couldn't find exactly what you were looking for. Perhaps it's in this list." ; unset( $atts['meta_key'] ); $text .= bw_navi( $atts ); } return( $text ); }View on GitHub