Sponsor-Board.de
hile bei wordpress, dringend, bitte!

+- Sponsor-Board.de (https://www.sponsor-board.de)
+-- Forum: Community (/forumdisplay.php?fid=56)
+--- Forum: Hilfe (/forumdisplay.php?fid=102)
+---- Forum: Scripting (/forumdisplay.php?fid=108)
+---- Thema: hile bei wordpress, dringend, bitte! (/showthread.php?tid=45990)


hile bei wordpress, dringend, bitte! - Bremengo - 19.02.2014 14:17

Guten Tag,

mein Name ist Sebastian,
ich bin 18 Jahre alt und bin gerade
dabei einen Blog mit wordpress zu
entwickeln.

mein problem:
ich möchte die post_title
einer bestimmten kategorie anzeigen lassen,
mit link zu dem artikel.

wenn einer weiss, wie dass geht bitte ich um hilfe!

mit freundlichen grüssen,
Sebastan.


RE: hile bei wordpress, dringend, bitte! - Leitwerk - 19.02.2014 17:57

PHP-Code:
<ul>
      <?
php
 
      
// The Query
      
query_posts( array ( 'category_name' => 'Deine Kategorie''posts_per_page' => -) );
 
      
// The Loop
     
while ( have_posts() ) : the_post(); ?>
        <li>
          <a href="<?php the_permalink() ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a>
      </li>
 
      <?php endwhile;
 
      
// Reset Query
      
wp_reset_query();
 
      
?>
</ul>