go41

the info you need to know


von Joern
Keine Kommentare

no idea how to exclude the admin in top query, you could do something like this inside the loop, it will jump the author with id=1:Code:if ( '1' == $author->ID ) { continue;}no idea again if following code will show the image and exclude author ID 1, just try<?php$lastnames =…


von Joern
Keine Kommentare

This is my code for comments:Code:<?php if ($comments) : ?>   <h3 id="comments"><?php comments_number('No Comment', '1 Comment', '% Comments' );?></h3>   <ul class="commentlist">   <?php foreach ($comments as $comment) : ?>   <?php    $isByAuthor = false;    if($comment->comment_author_email == get_the_author_email()) {    $isByAuthor = true;    }?>      <div class="commentlist">      <li id="comment-<?php…


von Joern
Keine Kommentare

the problem with featured content gallery seems to be just a problem of css styling. The plugin you use puts the gallery into a div id="featured". In arthemias style.css is #featured formatted to float right. Not using the featured stuff of arthemia you can try to delete all after #featured…