THEME PREVIEW

Heads Up! Changes made here are never saved. By the way, all themes are Beautiful!

Copy

<?php
class author {
    private $authorName = "Simon Ugorji";

    function __construct(){
        //...
    }

    public function getAuthor(){
        return ($this->authorName);
    }
}
//new instance
$cbAuthor = new author();
//get author's name
echo $cbAuthor->getAuthor(); 
?>