[ create a new paste ] login | about

Link: http://codepad.org/X0I3FmSx    [ raw code | fork ]

PHP, pasted on Jan 23:
1
2
3
4
5
6
7
8
class TFPortfolio {
    public function __construct() {
        add_action( 'init', array( &$this, 'createCustomPostType' ) );
        add_action( 'wp_enqueue_scripts', array( &$this, 'insertScripts' ) );
        add_shortcode( 'tf-portfolio', array( &$this, 'portfolioShortcode' ) );
    }
    //...
}


Create a new paste based on this one


Comments: