[ad_1]
Example 1
class MyPlugin
{
function __construct() {
add_action( ‘init’, array( $this, ‘custom_post_type_services’ ) );
add_action( ‘init’, array( $this, ‘custom_post_type_testimonials’ ) );
}
function activate() {
// do nothing?
}
}
Example 2
class MyPlugin
{
function __construct() {
// do nothing?
}
function activate() {
$this->custom_post_type_services();
$this->custom_post_type_testimonials();
flush_rewrite_rules();
}
}
