How do I make a template function?

Posted by topdog 527 days ago Questions| template function template function All
//TEMPLATE FILE
<html>
f_blog_title();
</html>
//TEMPLATE LOAD
<?php
ob_start();
echo file_get_contents('TEMPLATE FILE');
ob_end_flush();
?>

Now my problem is, how to search f_???() and run ??? function?

Originally asked by: Snoob on Stack Overflow

Discuss Bury


Who Voted for this Question