Shortcode Exec PHP 404 Error
-
Hi,
Gives me a 404 error when I try to run the following code:
GLOBAL $wpdb; $my_gallery = $wpdb->get_results( " SELECT * FROM wp_ngg_gallery " ); if ( $my_gallery ) { foreach ( $my_gallery as $post ) { //setup_postdata( $post ); echo '<h2>'; echo '<a href="">'; //the following line is jus for one record show //echo $my_gallery->title; //the following line is jus for multiple records show echo $my_gallery['title']; echo '</a>'; echo '</h2>'; } } else { echo '<h2>No galleries Found</h2>'; }
I want to show every record on the table wp_ngg_gallery.
But when I run the code my website goes offline.
Can anyone help me?Thanks in advance.
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Shortcode Exec PHP 404 Error’ is closed to new replies.