I have my own theme and I want display post on home page from specific category. So far I did it like this:
<?php
global $post;
$args = array( 'numberposts' => 10, 'category' => 6 );
$posts = get_posts( $args );
foreach( $posts as $post ): setup_postdata($post);
?>
<divs with the_title() the_excerpt() etc ></div>
<?php
endforeach;
?>
But what if I want get category by slug? Or is it possible to simply make the category selection box in the admin panel?