• 06-06-2020, 16:15:18
    #1
    <?php query_posts($query_string . '&cat=???????????????'); ?>
    <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
    Merhaba arkadaşlar soru işaretinin olduğu yere <?php echo $paneloptions["ktab1"]; ?> bunu nasıl yazabilirim?
  • 06-06-2020, 16:17:11
    #2
    <?php query_posts($query_string . '&cat=' . $paneloptions["ktab1"]); ?>
    • ClkOfis
    • bybrown
    • Anıl
    ClkOfis, bybrown, Anıl ve 1 kişi bunu beğendi.
    4 kişi bunu beğendi.
  • 06-06-2020, 16:20:16
    #3
    <?php query_posts("$query_string&cat=$paneloptions['ktab1']"); ?>
  • 06-06-2020, 16:23:29
    #4
    query_posts($query_string . "&cat={$paneloptions["ktab1"]}");

    veya

    parse_str($query_string, $params);
    $params['cat'] = $paneloptions["ktab1"];
    query_posts(http_build_query($params));
    • CodeKod
    CodeKod bunu beğendi.
    1 kişi bunu beğendi.
  • 06-06-2020, 16:33:43
    #5
    arkadaşlar çok teşekkür ediyorum sayenizde oldu