bilimokur adlı üyeden alıntı

Single.php içindeki kodların tamamını atarsanız yardımcı olabilirim.







// Hit counts

update_post_meta($post->ID, 'hit', get_post_meta($post->ID, 'hit',true) + 1);

$postHit = get_post_meta($post->ID, 'hit',true);



$singlePart = "video";

$nonVideoCategories = xoption("nonVideoCategories");

if(!is_array($nonVideoCategories)) $nonVideoCategories = array();

foreach(get_the_category() as $category) {

if(in_array($category->term_id, $nonVideoCategories)) {

$singlePart = "normal";

}

}

get_template_part('single-' . $singlePart);

?>