You can use Custom Post Types with MemberMouse under most conditions. When creating a custom post type for WordPress, the developer will assign a capability type, telling WordPress how to view these custom posts. There are two main capability types, ‘post’ (default), and ‘page’. There may be others used, but these are the two that will be relevant to MemberMouse. If you are unsure of the type of custom post you are using, you can reach out to the developer, or use the following information to see what protection methods are available to you in MemberMouse when using them.
Puede proteger las entradas personalizadas con las funciones de página y entrada de uno en unoo utilice el calendario de contenidos por goteo. Los tipos de entrada personalizados con la capacidad de entrada también se pueden protegido por categoría. Hay algunos Sistemas de Gestión de Aprendizaje en los que los tipos de entrada personalizados pueden no aparecer en la programación de contenido por goteo, y necesitarán ser protegidos usando el botón de Conceder Acceso dentro del editor de páginas/post, o por categoría si es soportado por la configuración de su tipo de entrada.
If you’re using custom post types and you want to be able to make those pages into MemberMouse páginas centrales, you’ll need to ensure that your custom post type has page capabilities. If you’re unsure if this is the case you’ll want to reach out to your developer to ask them about this.
Esta es la comprobación que hace MemberMouse para determinar si el tipo de entrada personalizada es algo con lo que podemos trabajar:
$postTypeObj = get_post_type_object($post->tipo_página);
if($postTypeObj->capability_type == "page")
{
// permite ser página principal
}

