go41

the info you need to know


von Joern
Keine Kommentare

Joern, I found a wp plug in which is great. Now I am using a theme which has the following index.php codeCode:<?php get_header(); ?>   <?php if(!is_paged()) { ?>   <div id="top" class="clearfloat">      <div id="headline">      <img src="<?php echo get_option('home'); ?>/wp-content/themes/arthemia/images/headline.png"…


von Joern
Keine Kommentare

you have now a div id featured inside a div id featured, not following a first one.The complete code for this div in original theme isCode:<div id="featured">   <img src="<?php echo get_option('home'); ?>/wp-content/themes/arthemia/images/featured.png" width="72px" height="17px" alt="" />   <?php query_posts("showposts=4&category_name=Featured"); $i =…


von Joern
Keine Kommentare

your featured section looks like this now in index.phpCode:<?php while (have_posts()) : the_post(); ?>   <div class="clearfloat">   <?php $values = get_post_custom_values("Image");   if (isset($values[0])) { ?>      <a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>">   <img src="<?php echo…