Alisdairb
Forum Replies Created
Viewing 3 replies - 1 through 3 (of 3 total)
-
Forum: Fixing WordPress
In reply to: Display Sticky posts only from specific categoryHi Josh, sorry I included the wrong code, that was from a previous attempt. I have added the code which i have been using to basically get the latest posts from a specific category however im not experience enough to realize how i can make it so that code only picks up the sticky posts from that category.
<?php $the_query = new WP_Query( 'category_name=things-to-do&showposts=3' ); ?> <?php while ($the_query -> have_posts()) : $the_query -> the_post(); ?> <div class="index-thumb"><?php the_post_thumbnail(array(100,100), array ('class' => 'alignleft1')); ?></div> <div class="indexblog-title"><a title="<?php the_title(); ?>" href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></div> <?php the_excerpt(__('(more…)')); ?> <?php endwhile;?>Forum: Plugins
In reply to: [Automatic Youtube Video Posts Plugin] Total Videos Imported: 0Fixed the issue for those interested, just paste the code from this link: http://pastebin.com/raw.php?i=z1pPfuqn into the /core/parse.php file of the plugin and it should fix it.
Forum: Plugins
In reply to: [Automatic Youtube Video Posts Plugin] Total Videos Imported: 0Also getting this same error since installing the plugin today on a new site. Had a preview version installed a few days ago on another website and it worked perfectly so not sure why its acting up now
Viewing 3 replies - 1 through 3 (of 3 total)