WP 是否有插件可以显示标题或某处带有特定单词的最新消息?

Is there plugin for WP to show latest news with specific word in title or somewhere?

我需要有关 WordPress 的帮助。比如我的博客里有100个post,只有一个post有一个词:“HOT”。我想在右侧显示此 post(如小部件)。你能给我一些建议吗?

像 "Recent Posts Widget Extended" 这样的插件可以按标签过滤或过滤 functions.php 上的 post 查询,例如:

add_filter( 'rpwe_default_query_arguments', 'your_custom_function' );
function your_custom_function( $args ) {
    $args['s'] = 'HOT'; 
    return $args;
}