Blogroll & another plug-in disappear
-
I’m pretty new to the whole WordPress thing and love customizing it. I found some code I liked from another theme called Mimbo where it shows specific posts from categories using an image through Custom Fields to locate the image. I’m using K2 for the Side Bar Manager. I took and modified some code from the Mimbo theme to use it as a Latest Work side bar. It works fine for what I want it to do but, there are two things that go missing when I add it…My links(blogroll) and a Users Online side bar. When I add the Latest Work side bar to side bar 1, the two in question disappear. When I add it after them in side bar 2, they show up fine.
So, I’m wondering if it has something to do with the php code being used in the Latest Work side bar I hacked up? More than likely it is. So, I have the code listed below.
<?php
// this is where the Features module begins
query_posts('showposts=5&cat=5,8'); ?>
<?php while (have_posts()) : the_post(); ?>
<div class="feature">" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><img src="<?php bloginfo('template_url'); ?>/images/<?php
// this is where the custom field prints images for each Feature
$values = get_post_custom_values("Image"); echo $values[0]; ?>" alt="" /><br><center>" rel="bookmark" class="title">
<?php
// this is where title of the Feature gets printed
the_title(); ?></center></div>
<?php endwhile; ?>
Here is my site:
https://www.hitoristudios.com/I have edited the OverViewLight theme for SMF by DzinerStudio which is used on my forum for my main site. Changed it from the turquoise blue color to the red that is shown. This is also another question I have about the top tabs… But that will be saved for later… >_<
- The topic ‘Blogroll & another plug-in disappear’ is closed to new replies.