你可以使用以下的WordPress代码来调用某个特定分类下的文章:

<?php
$args = array(
    'category_name' => 'yourcategoryslug', // 替换成你想要调用的分类的别名
    'posts_per_page' => 1, // 1 代表调用所有文章,你也可以设置一个数字来限制调用的数量
);

$custom_query = new WP_Query($args);

if ($custom_query>have_posts()) :
    while ($custom_query>have_posts()) : $custom_query>the_post();
        // 在这里输出你的文章内容或进行其他操作
        the_title(); // 输出文章标题
        the_content(); // 输出文章内容
    endwhile;
endif;

// 重置查询
wp_reset_postdata();
?>

请确保替换 'yourcategoryslug' 为你想要调用的分类的别名。你可以将这段代码插入到你的WordPress主题文件中,以在网站上显示该分类下的文章。