<?php
$args = array(
'numberposts' => 9,
'category' => 81,
'post_status' => 'publish',
);
$result = wp_get_recent_posts($args);
foreach( $result as $p ){
?>
<li>
<div class="col-xs-12 col-sm-12 div-li">
<i class="fa fa-comment-o" aria-hidden="true"></i><a href="<?php echo get_permalink($p['ID']) ?>"><?php echo $p['post_title'] ?></a><br />
</div>
</li>
<?php
}
?>
<form action="/fl" method="get">
Intel <input type="checkbox" name="Intel" value="Yes" />
AMD <input type="checkbox" name="AMD" value="Yes" />
s775 <input type="checkbox" name="s775" value="Yes" />
<input type="submit" name="formSubmit" value="Фильтровать" />
</form>