go41

the info you need to know


von Joern
Keine Kommentare

The problem: I got a WordPress site with feature headline, the latest post of headline category. Below I want to show all posts from all categories except this one. But I want to display older posts from this category headline together with any post of any other category. Next problem…


von Joern
Keine Kommentare

I guess your exec-php plugin can't execute the code you give it in this entry...On your given link there is no content to see in this page.What do you actually want to get executed in the front-end?____________________you find me on Google+, Twitter and Facebook


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 bloginfo('template_url'); ?>/scripts/timthumb.php?src=/<?php$values = get_post_custom_values("Image"); echo $values[0]; ?>&w=100&h=65&zc=1&q=100"alt="<?php the_title(); ?>" class="left"…