Custom Post Products

Last updated on Thursday, June 16th, 2011

These instructions are intended for those who are proficient in theme development. The relevant tutorials on developing & customising themes can be found on wordpress.org. If this is beyond you, we do offer a competitively-priced theme development service starting at £33 per hour. Please contact us for further details.

If you are using a custom post type for a shop, the “Add Product” pane will not be displayed unless you add the following to your theme’s functions.php file:

add_filter( 'eshop_post_types','mycustomtype' );
function mycustomtype( $array ) {
	$array = array('mytype');
	return $array;
}

WordPress Installation and Set Up

Top