For example I have this code which gets the post title:
function baracuda_sinlge_post_title(){ // Single Post Title
$post_title = single_post_title('','0');
return $post_title;
}
Where do you think it would run faster, in functions.php or direcly in the template I need it to be like this:
$post_title = single_post_title('','0');