WN

WN (https://www.wn.se/forum/index.php)
-   Serversidans teknologier (https://www.wn.se/forum/forumdisplay.php?f=4)
-   -   Hämta bara inläggstitlar som har följande tag - Wordpress (https://www.wn.se/forum/showthread.php?t=1055888)

spajk 2012-11-27 14:37

Hämta bara inläggstitlar som har följande tag - Wordpress
 
Hej,

Har kört fast. Har hittils en kod som hämtar mina inlägg från aktuell kategori. Men skulle behöva att den bara hämtar de inlägg som har följande tag: "Allmänt". Någon som vill kasta mig ett ben?

PHP-kod:

<?php
global $post;
$category get_the_category($post->ID);
$category $category[0]->cat_ID;
$myposts get_posts(array('numberposts' => 5'offset' => 0'category__in' => array($category), 'post_status'=>'publish''order'=>'ASC' ));
foreach(
$myposts as $post) :
setup_postdata($post);
?>

<li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>

<?php endforeach; ?>
<?php wp_reset_query
(); ?>

Tacksam för all hjälp.

spajk 2012-11-27 14:50

Lättare än jag trodde.

Byt ut till denna: $myposts = get_posts(array('numberposts' => 20, 'offset' => 0, 'category__in' => array($category), 'post_status'=>'publish', 'order'=>'ASC', 'tag' => 'allmant' ));

så funkar det. :)


Alla tider är GMT +2. Klockan är nu 03:10.

Programvara från: vBulletin® Version 3.8.2
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Svensk översättning av: Anders Pettersson