lostyazilim
tr.link

wordpress yardım

4 Mesajlar 663 Okunma
acebozum
tr.link

Drozturk Drozturk WM Aracı Kullanıcı
  • Üyelik 17.01.2014
  • Yaş/Cinsiyet 34 / E
  • Meslek Web Geliştiricisi
  • Konum Diğer
  • Ad Soyad M** Ç**
  • Mesajlar 324
  • Beğeniler 111 / 117
  • Ticaret 28, (%100)
iyi günler arkadaşlar benim şöyle bir sorunum var
temanın sidebarında yani yan bileşenlerinde etikete baglı yazıları nasıl göstere bilirim mesela bir yazıya girdigim zaman sag tarafda o yazını etiketine baglı diger yazılar cıkacak bunu nasıl yapa bilirim kategori şeklindede olabilir yardımlarınıza muhtacım şimdiden teşekkürler
 

 

elektronikssl
webimgo

AgReSsivVe AgReSsivVe WM Aracı Kullanıcı
  • Üyelik 04.03.2015
  • Yaş/Cinsiyet 38 / E
  • Meslek Serbest
  • Konum İstanbul Avrupa
  • Ad Soyad E** A**
  • Mesajlar 8
  • Beğeniler 0 / 0
  • Ticaret 0, (%0)
/**
* Shows related posts by tag if available and category if not
*
* @author Justin Tallant
* @param string $title h4 above list of related posts
* @param int $count max number of posts to show
* @return mixed related posts wrapped in div or null if none found
*/
function jt_related_posts($title = 'Related Posts', $count = 5) {
global $post;
$tag_ids = array();
$current_cat = get_the_category($post->ID);
$current_cat = $current_cat[0]->cat_ID;
$this_cat = '';
$tags = get_the_tags($post->ID);
if ( $tags ) {
foreach($tags as $tag) {
$tag_ids[] = $tag->term_id;
}
} else {
$this_cat = $current_cat;
}
$args = array(
'post_type' => get_post_type(),
'numberposts' => $count,
'orderby' => 'rand',
'tag__in' => $tag_ids,
'cat' => $this_cat,
'exclude' => $post->ID
);
$related_posts = get_posts($args);
/**
* If the tags are only assigned to this post try getting
* the posts again without the tag__in arg and set the cat
* arg to this category.
*/
if ( empty($related_posts) ) {
$args['tag__in'] = '';
$args['cat'] = $current_cat;
$related_posts = get_posts($args);
}
if ( empty($related_posts) ) {
return;
}
$post_list = '';
foreach($related_posts as $related) {
$post_list .= '
  • ' . $related->post_title . '
  • ';
    }
    return sprintf('

    ', $title, $post_list );
    }
    /**
    * Customize the title and where the related posts are displayed
    */
    add_action('genesis_after_post_content', 'do_jt_related_posts');
    function do_jt_related_posts() {
    $title = 'Related Posts';
    if ( !is_single() ) {
    return;
    }
    if ( get_post_type() == 'gallery' || get_post_type() == 'case-studies' ) {
    $title = 'See more client sites';
    }
    /**
    * Array of post types to be excluded
    */
    $exclude = array('aeprofiles', 'bizdir', 'palettes');
    foreach($exclude as $type) {
    if ( get_post_type() == $type ) {
    return;
    }
    }
    echo jt_related_posts($title);
    }



    Yukarıdaki kod rastgele yazı kodudur. Muhtemelen işinize yarar. Etikete, kategoriye göre yazıları listeler. functions.php'ye ekleyin.

    Göstermek istediğiniz yere şeklinde kodu çağırın.
     

     

    TEHET TEHET Kullanıcı
    • Üyelik 04.10.2014
    • Yaş/Cinsiyet 32 / E
    • Meslek Tasarımcı
    • Konum Ankara
    • Ad Soyad M** A**
    • Mesajlar 791
    • Beğeniler 96 / 374
    • Ticaret 1, (%100)
    Aynı etiketlere sahip konuları göstermek için;
    $tags = wp_get_post_tags($post->ID);
    if ($tags) {
    $tag_ids = array();
    foreach($tags as $individual_tag) $tag_ids[] = $individual_tag->term_id;

    $args=array(
    'tag__in' => $tag_ids,
    'post__not_in' => array($post->ID),
    'showposts'=>5, // Gösterilecek benzer yazı sayısı
    'caller_get_posts'=>1
    );

    $my_query = new wp_query($args);
    if( $my_query->have_posts() ) {
    echo '

    Benzer yazılar

      ';
      while ($my_query->have_posts()) {
      $my_query->the_post();
      ?>

    • }
      echo '
    ';
    }
    wp_reset_query();
    }
    ?>


    Kategorideki diğer konuları göstermek için;
    $categories = get_the_category($post->ID);
    if ($categories) {
    $category_ids = array();
    foreach($categories as $individual_category) $category_ids[] = $individual_category->term_id;

    $args=array(
    'category__in' => $category_ids,
    'post__not_in' => array($post->ID),
    'showposts'=>5, // Gösterilecek benzer yazı sayısı
    'caller_get_posts'=>1
    );

    $my_query = new wp_query($args);
    if( $my_query->have_posts() ) {
    echo '

    Benzer yazılar

      ';
      while ($my_query->have_posts()) {
      $my_query->the_post();
      ?>

    • }
      echo '
    ';
    }
    wp_reset_query();
    }
    ?>
     

     

    Drozturk Drozturk WM Aracı Kullanıcı
    • Üyelik 17.01.2014
    • Yaş/Cinsiyet 34 / E
    • Meslek Web Geliştiricisi
    • Konum Diğer
    • Ad Soyad M** Ç**
    • Mesajlar 324
    • Beğeniler 111 / 117
    • Ticaret 28, (%100)
    İlginiz için Teşekürler Deniyecegim

    Ek Olarak: 2 side olmadı yapamadım
     

     

    wmaraci
    wmaraci
    Site Ayarları
    • Tema Seçeneği
    • Site Sesleri
    • Bildirimler
    • Özel Mesaj Al