Did you get it to work?
I cant even get Prestige to install. Im so frustrated 🙁
Did you ever get it to work?
I’m having the same problem with Prestige, and could just cry I’m so frustrated. 🙁
# Displays a list of pages
function dp_list_pages() {
global $wpdb;
$querystr = “SELECT $wpdb->posts.ID, $wpdb->posts.post_title FROM $wpdb->posts WHERE $wpdb->posts.post_status = ‘publish’ AND $wpdb->posts.post_type = ‘page’ ORDER BY ID”;
$pageposts = $wpdb->get_results($querystr, OBJECT);
if ($pageposts) {
foreach ($pageposts as $post) {
?>