要在WordPress中调用相同文章类型的日志列表,您可以使用WordPress的WP_Query类来执行自定义查询。以下是一个示例,假设您想要列出相同文章类型的最新帖子:

<?php
$args = array(
    'post_type' => 'post', // 指定文章类型为 "post"
    'posts_per_page' => 10, // 指定要显示的帖子数量
);

$query = new WP_Query($args);

if ($query>have_posts()) :
    while ($query>have_posts()) : $query>the_post();
        // 在这里输出帖子标题、内容或其他信息
        the_title();
        the_content();
    endwhile;
    wp_reset_postdata();
else :
    // 如果没有匹配的帖子
    echo '没有找到帖子';
endif;
?>

在上述示例中,我们使用WP_Query查询来获取相同文章类型('post')的最新10篇帖子。您可以根据需要更改参数来自定义查询,然后在循环中输出帖子的标题、内容或其他信息。

请确保将这段代码添加到您的WordPress主题文件中,以便在需要时显示相同文章类型的日志列表。