dpp78272 2018-07-04 09:05
浏览 39
已采纳

使用PHP修改WordPress中的类别模板

I am having some trouble building the category template i want. Here is an example of one of my categories: http://transcorrect.bg/pi-de/category/versicherungen/

I want this field http://prntscr.com/k2d5xg to show posts only from the current category. I am attaching the code i am using right now, but it is only for specific category. What i want is to be on archive.php file as a code, that takes dynamically the category ID.

Minimal example of code

    <div class="row">
    <div class="headline-box" style="margin-bottom:10px;">Weitere Artikel</div>
    <?php
    // get the top-category posts
    $the_query = new WP_Query(array(
        'category_name' => 'Versicherungen',
        'posts_per_page' => 10,
    ));                                                                     
    if ($the_query->have_posts()) : ?>
        <?php while ($the_query->have_posts()) : $the_query->the_post(); ?>
            <div id="list-news-home" class="col-lg-12" style="padding-top:10px;padding-bottom:10px;">
                <img src="http://transcorrect.bg/pi-de/wp-content/uploads/2018/07/arrow1.png" style="padding-right:20px;"><a href="<?php echo get_permalink(); ?>" style="color:#00315C"><?php the_title(); ?></a>
                <a href="<?php echo get_permalink(); ?>" style="float:right"> [ mehr ] </a>
            </div>                                                                   
            <hr style="margin-top:50px;margin-bottom:10px"> 
        <?php endwhile; ?>
    <?php endif; ?>        
</div>

I can't figure out how to get it so if someone has made something similar i will be thankful to know how :)

  • 写回答

1条回答 默认 最新

  • doumi4676 2018-07-04 12:43
    关注

    I have worked it out. If anyone needs similar thing i am posting how i converted the code i posted earlier.

    <div class="row">
     <div class="headline-box" style="margin-bottom:10px;">Weitere Artikel</div>
       <?php $current_cat_id  = get_query_var('cat'); $showposts = 10;
    

    $args = array('cat' => $current_cat_id, 'orderby' => 'post_date', 'order' => 'DESC', 'posts_per_page' => $showposts,'post_status' => 'publish'); query_posts($args); if (have_posts()) : while (have_posts()) : the_post(); ?>
    " style="color:#00315C"> " style="float:right"> [ mehr ]

            <?php endwhile; ?>
        <?php endif; ?>  
    

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 metadata提取的PDF元数据,如何转换为一个Excel
  • ¥15 关于arduino编程toCharArray()函数的使用
  • ¥100 vc++混合CEF采用CLR方式编译报错
  • ¥15 coze 的插件输入飞书多维表格 app_token 后一直显示错误,如何解决?
  • ¥15 vite+vue3+plyr播放本地public文件夹下视频无法加载
  • ¥15 c#逐行读取txt文本,但是每一行里面数据之间空格数量不同
  • ¥50 如何openEuler 22.03上安装配置drbd
  • ¥20 ING91680C BLE5.3 芯片怎么实现串口收发数据
  • ¥15 无线连接树莓派,无法执行update,如何解决?(相关搜索:软件下载)
  • ¥15 Windows11, backspace, enter, space键失灵