super, ich benötige bitte noch einmal deine hilfe:
ich hab das ganze mit punkt 1 in den einstellungen geschafft. also einen neuen blog mit
TAGS erstellt und dort werden alle post global gesammelt. aber eigentlich will ich den wieder löschen und alles auf dem MAIN BLOG sammeln. das klappt ja auch (anscheinend)
aber ich bin leider nicht so fortgeschritten, dass ich weiß was das hier zu bedeuten hat:
Zitat:
Post to main blog
Create posts in your main blog. All posts will appear on the front page of your site. Remember to to add a post loop to home.php in the theme directory if it exists.
|
ich hacke das an, und habe in mein
theme directory unter meine
theme files geschaut und da liegt eine _home.php datei.
was muss ich da machen, wäre nett wenn mir da jemand helfen könnte.
PHP-Code:
<?php get_header(); ?>
<div id="homebody"> <span style="text-transform: uppercase;">
<?php bloginfo('description'); ?>
</span>
<!-- To use this optional home page, rename this file to home.php. You'll need to edit the following by hand. Replace [category name] with the name of a category you want to display on the home page. You can copy the block $my_query block as many times as you like. -->
<?php $my_query = new WP_Query('category_name=[category name]&showposts=1');
while ($my_query->have_posts()) : $my_query->the_post();
$do_not_duplicate = $post->ID; ?>
<span class="cat">
<?php the_category(' ') ?>
</span> <a href="<?php the_permalink() ?>" rel="bookmark">
<?php the_title(); ?>
</a>
<?php endwhile; ?>
<a href="about" title="About">ABOUT</a> FACE. DIVE INTO THE <a href="archives" title="Archives">ARCHIVES</a>. DON’T MISS A TRICK: <a href="<?php bloginfo('rss2_url'); ?>" class="subscribe">SUBSCRIBE.</a> </div>
<!-- end homebody -->
<?php get_footer(); ?>
danke und lg