$conf, $runtime; function_exists('chdir') AND chdir(APP_PATH); $r = 'mysql' == $conf['cache']['type'] ? website_set('runtime', $runtime) : cache_set('runtime', $runtime); } function runtime_truncate() { global $conf; 'mysql' == $conf['cache']['type'] ? website_set('runtime', '') : cache_delete('runtime'); } register_shutdown_function('runtime_save'); ?>unordered list loop not showing up in sidebar|Programmer puzzle solving
最新消息:Welcome to the puzzle paradise for programmers! Here, a well-designed puzzle awaits you. From code logic puzzles to algorithmic challenges, each level is closely centered on the programmer's expertise and skills. Whether you're a novice programmer or an experienced tech guru, you'll find your own challenges on this site. In the process of solving puzzles, you can not only exercise your thinking skills, but also deepen your understanding and application of programming knowledge. Come to start this puzzle journey full of wisdom and challenges, with many programmers to compete with each other and show your programming wisdom! Translated with DeepL.com (free version)

unordered list loop not showing up in sidebar

matteradmin8PV0评论

I have a custom sidebar named "sidebar-events" that should only display posts in the "Events" category. I placed the following code in the sidebar. The header appears, but not the unordered list. In the source code there's nothing - no ul, no li. What am I doing wrong?

<div id="sidebar" class="widgets-area">
<h2>What's Going On</h2>

<?php
    //what I will be looking for
    $args = array(
        "type" => post,
        "posts_per_page" => 5,
        "category_name" => "Events"
    );
    //create new query and pass the arguments
    $recentEvents = new WP_Query($args);

    if( $recentEvents->have_posts() ): ?>
        <ul>

        <?php while( $recentEvents->have_posts() ): $recentEvents->the_post(); ?>

            <li><?php the_title(); ?></li>

        <?php endwhile; ?>
        </ul>
    <?php endif; wp_reset_postdata();
?>

I have a custom sidebar named "sidebar-events" that should only display posts in the "Events" category. I placed the following code in the sidebar. The header appears, but not the unordered list. In the source code there's nothing - no ul, no li. What am I doing wrong?

<div id="sidebar" class="widgets-area">
<h2>What's Going On</h2>

<?php
    //what I will be looking for
    $args = array(
        "type" => post,
        "posts_per_page" => 5,
        "category_name" => "Events"
    );
    //create new query and pass the arguments
    $recentEvents = new WP_Query($args);

    if( $recentEvents->have_posts() ): ?>
        <ul>

        <?php while( $recentEvents->have_posts() ): $recentEvents->the_post(); ?>

            <li><?php the_title(); ?></li>

        <?php endwhile; ?>
        </ul>
    <?php endif; wp_reset_postdata();
?>

Share Improve this question asked Dec 21, 2018 at 21:48 marilynnmarilynn 51 bronze badge
Add a comment  | 

1 Answer 1

Reset to default 0

You want to use post_type instead of just type and put apostrophes around your post type itself.

Instead of this:

$args = array(
    "type" => post,
    "posts_per_page" => 5,
    "category_name" => "Events"
);

I would do this:

$args = array(
    'post_type' => 'post',
    'posts_per_page' => 5,
    'category_name' => 'Events',
);

Articles related to this article

Post a comment

comment list (0)

  1. No comments so far