Пожалуйста, попробуйте с нижеуказанным:
В массиве $ * arg используйте Left идентификатор категории, состоящий из category_ID в "category" столбец.
<?php
$args = array (
'post_type' => 'service',
'post_status' => 'publish',
'order' => 'ASC',
'category' => 'category_ID',
'posts_per_page' =>-1
);
$posts = new WP_Query( $args );
if ( $posts->have_posts() ) {
while ( $posts->have_posts() ) {
$posts->the_post();
//$image11 = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'full' );
?>
<li>
<a href="<?php the_permalink(); ?>">
<i class="fa fa-file-text"></i>
<?php the_title(); ?>
</a>
</li>
<?php
}
}
wp_reset_postdata();
?>