If I get coding like this on my wp-admin page, does that mean my host doesn’t support PHP?
get_results(“SELECT ID, post_title FROM $wpdb->posts WHERE post_status = ‘publish’ AND post_date_gmt < ‘$today’ ORDER BY post_date DESC LIMIT 5”) ) : ?>
??
post_title == ”) $post->post_title = sprintf(__(‘Post #%s’), $post->ID); echo “
“; the_title(); echo ‘
‘; } ?>
get_results(“SELECT ID, post_title, post_date_gmt FROM $wpdb->posts WHERE post_status = ‘publish’ AND post_date_gmt > ‘$today'”) ) : ?>
post_title == ”) $post->post_title = sprintf(__(‘Post #%s’), $post->ID); echo “
” . sprintf(__(‘%1$s in %2$s’), “$post->post_title”, human_time_diff( current_time(‘timestamp’, 1), strtotime($post->post_date_gmt. ‘ GMT’) )) . “
“; } ?>
….. and so on