Functions.php'yi baştan aşağıya silip şu kodları yapıştırın:
if ( function_exists('register_sidebar') )
register_sidebar();
function exclude_category($query) {
if ( $query->is_home ) {
$query->set('cat', '-16');
}
return $query;
}
add_filter('pre_get_posts', 'exclude_category');
function catch_that_image() {
global $post, $posts;
$first_img = '';
ob_start();
ob_end_clean();
$output = preg_match_all('//i', $post->post_content, $matches);
$first_img = $matches [1] [0];
if(empty($first_img)){ //Defines a default image
$first_img = "/images/image-pending.gif";
}
return $first_img;
}
?>
Resin görüntülenmesini istediğiniz yere de şunu girin:
En başa belirttiğim gibi, hata vermesi ya da olmaması çok muhtemel :)