chsardianos
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: php help neededThe problem with the images where solved, it was a mess of the saving directory.
Pending a way to show one thumbnail next to one other rather than one below the other, and very important how to show the 5th to 10th posts (depending by the posting date) rather than latest 5.
Forum: Fixing WordPress
In reply to: php help neededSorry forgot the code 🙂
<?php
// this is where the Features module begins
query_posts(‘showposts=1&cat=199’); ?> //change the showposts number to the number of posts that you want to appear, and change cat=199 to your category number, which you can find out by going to Manage > Categories
<?php while (have_posts()) : the_post(); ?>
<div class=”thumbnails”>” rel=”bookmark” title=”Permanent Link to <?php the_title(); ?>”><img src=”<?php echo get_option(‘home’); ?>/wp-content/themes/themefolder/images/<?php
// this is where the custom field prints images for each Feature
$values = get_post_custom_values(“Image”); echo $values[0]; ?>” alt=”” />
<p class=”title”>” rel=”bookmark”>
<?php
// this is where title of the Feature gets printed
the_title(); ?></p></div>
<?php endwhile; ?>Forum: Fixing WordPress
In reply to: Table with recent postAnything? 🙁
Forum: Fixing WordPress
In reply to: Facebooke Share and Retweetups sorry
:$
Forum: Fixing WordPress
In reply to: Facebooke Share and RetweetForum: Fixing WordPress
In reply to: Table with recent postHi, thanks for replying.
Yes something like that, but I want to display them just under my post in the main bar but I don’t know what code do I need to create or where to attach that.
I’ve also tried plugins like wp-table-reloaded etc but I didn’t make it.