Beiträge von ABB

    Hallo, was muss ich in diesen Code einfügen damit der Titel des angeklickten Tags angezeigt wird?

    <?php /* If this is a tag archive */ } elseif( is_tag() ) { ?> <?php echo tag_description();?>
    <h2 class="pageTitle">Stichwort ‘<?php single_tag_title(); ?>’</h2>

    Hallo

    Gibt es eigentlich ein Plugin, womit es möglich wäre, externe ähnliche Artikel unter jedem Artikel anzuzeigen?

    Beispiel: Ich habe ein Artikel über Wordpress. Unter dem Artikel würde ich gerne z.B. von Wikipedia ein oder mehrere ähnliche Artikel zu dem Thema (paar Zeilen), mit link zum Artikel integrieren.

    Das soll mit allen Beiträgen im Blog geschehen. Gibt es was in der Richtung?
    Danke

    Bei mir war das Plugin von Finanzen.de schuld.Egal welches Theme ich genommen habe, hatte ich keine Absätze.Bin zufällig auf die Idee gekommen.Plugin deaktiviert und schon waren die Absätze da.

    tag.php hatte ich schon erstellt. Wenn ich jedoch den Code so einfüge, sehe ich keine Veränderungen, außer dass der Code so wie eingefügt im Frontend wiedergegeben wird also Code als Text.
    Habe ich was falsch gemacht?
    Danke für deine Mühe.

    <?php get_header(); ?>

    <div id="contentwrapper"><div id="content">

    <div class="adsense_top"><?php include (TEMPLATEPATH . '/adsense_top.php'); ?></div>

    <?php if (have_posts()) : ?>

    query_posts($query_string . "&posts_per_page=42");

    <?php echo tag_description(); ?>

    <?php while (have_posts()) : the_post(); ?>

    <div class="post">
    <h2 class="postTitle"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>

    Hi
    Ich finde es eine Super Idee und für mich sehr Nützlich, doch scheint das ganze nicht ganz zu funktionieren.

    Wenn ich die Tags anklicke, komme ich direkt zu einem Beitrag statt auf die Übersichtsseite wo die Artikel unter diesen Begriff gelistet sind.

    Habs rausgefunden,man muss folgende zeilen löschen

    <!--Start Search -->
    <div class="search">
    <h3>Search</h3>
    <form id="search" action="<?php bloginfo('url'); ?>/">
    <fieldset>
    <input type="text" value="<?php the_search_query(); ?>" name="s" style="width: 250px;" />
    </fieldset>
    </form>
    </div>
    <!--End Search -->

    <!--Start Recent -->
    <div class="recent">
    <ul class="tabs">
    <li><a href="#r-posts"><span>Letzte Fragen</span></a></li><li><a href="#r-com"><span>Letzte Antworten</span></a></li><li><a href="#r-tags"><span>Tags</span></a></li>
    </ul>
    <br clear="all" />
    <ul id="r-posts">
    <?php $posts = get_posts("numberposts=10&orderby=post_date&order= DESC"); foreach($posts as $post) : ?>
    <li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
    <?php endforeach; ?>
    </ul>
    <ul id="r-com">
    <?php dp_recent_comments(3); ?>
    </ul>
    <div id="r-tags">
    <?php wp_tag_cloud(''); ?>
    </div>
    </div>
    <!--End Recent -->


    <div class="about-all"><div class="about">
    <h3>About</h3>
    This is an example of a WordPress page, you could edit this to put information about yourself or your site so readers know where you are coming from.
    </div></div>

    Danke

    Ich habe hier einmal sidebar-1 und sidebar-2.php die sehen wie folgt aus.Wo muss ich was löschen?

    Vielen Dank

    sidebar-1.php

    <!--Start Categories -->
    <div class="categ-all"><div class="categ">
    <h3>Categories</h3>
    <ul>
    <?php wp_list_categories('show_count=1&title_li='); ?>
    </ul>
    </div></div>
    <!--End Categories -->

    <!--Start Categories -->
    <div class="widget"><div class="widget-all">
    <h3>Archives</h3>
    <ul>
    <?php wp_get_archives('type=monthly'); ?>
    </ul>
    </div></div>
    <!--End Categories -->

    <!--Start Dynamic Sidebar -->
    <?php if ( function_exists('dynamic_sidebar') && dynamic_sidebar(1) ) : else : ?>

    <?php endif; ?>
    <!--End Dynamic Sidebar -->

    sidebar-2.php

    <!--Start Search -->
    <div class="search">
    <h3>Search</h3>
    <form id="search" action="<?php bloginfo('url'); ?>/">
    <fieldset>
    <input type="text" value="<?php the_search_query(); ?>" name="s" style="width: 250px;" />
    </fieldset>
    </form>
    </div>
    <!--End Search -->

    <!--Start Recent -->
    <div class="recent">
    <ul class="tabs">
    <li><a href="#r-posts"><span>Letzte Fragen</span></a></li><li><a href="#r-com"><span>Letzte Antworten</span></a></li><li><a href="#r-tags"><span>Tags</span></a></li>
    </ul>
    <br clear="all" />
    <ul id="r-posts">
    <?php $posts = get_posts("numberposts=10&orderby=post_date&order=DESC"); foreach($posts as $post) : ?>
    <li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
    <?php endforeach; ?>
    </ul>
    <ul id="r-com">
    <?php dp_recent_comments(3); ?>
    </ul>
    <div id="r-tags">
    <?php wp_tag_cloud(''); ?>
    </div>
    </div>
    <!--End Recent -->


    <!-- Start Flickr Photostream -->
    <?php if (function_exists('get_flickrrss')) { ?>
    <div class="flickr">
    <h3>Flickr PhotoStream</h3>
    <ul>
    <?php get_flickrrss(4); ?>
    </ul>
    </div>
    <?php } ?>
    <!-- End Flickr Photostream -->

    <div class="about-all"><div class="about">
    <h3>About</h3>
    This is an example of a WordPress page, you could edit this to put information about yourself or your site so readers know where you are coming from.
    </div></div>


    <br />
    <!--Start Dynamic Sidebar -->
    <?php if ( function_exists('dynamic_sidebar') && dynamic_sidebar(2) ) : else : ?>
    <?php endif; ?>
    <!--End Dynamic Sidebar -->