rtilney
Forum Replies Created
-
Forum: Plugins
In reply to: [RESPONSIVE 3D SLIDER] Not able to save images in scenesActually, deleating the plugin and reinstalling seems to fix it.
Forum: Plugins
In reply to: [RESPONSIVE 3D SLIDER] Not able to save images in scenesSame here, worked at first now when you select ‘New image item’, it doesn’t actually save the image to the scene. It’s just blank? I’ve deactivated and reactivated the plug-in to no avail. Any help would be appreciated…
Thanks.
Forum: Fixing WordPress
In reply to: Mini Loop – How to put most recent post on top?Thanks Kafkaesqui, it worked like a charm!
Forum: Fixing WordPress
In reply to: Mini Loop – How to put most recent post on top?Hi Kafkaesqui,
I tried that and it still displays the same order. Here is my exact code:
<?php
$how_many=15; //How many posts do you want to show
require_once(“news/wp-config.php”); // Change this for your path to wp-config.php file ?><id=”whats-new”>
<?
$news=$wpdb->get_results(“SELECTID,post_titleFROM $wpdb->posts
WHEREpost_type=\”post\” ANDpost_status= \”publish\” ORDER BY ‘post_date’ DESC LIMIT “.$how_many);
foreach($news as $np){
printf (“%s<br><br>”, $np->ID,$np->post_title);
}?>Any advice?
Thank you.