wpcf7_register_post_types()
Registers post types used for this plugin.
Хуков нет.
Возвращает
null. Ничего (null).
Использование
wpcf7_register_post_types();
Код wpcf7_register_post_types() wpcf7 register post types CF7 6.1.5
function wpcf7_register_post_types() {
if ( class_exists( 'WPCF7_ContactForm' ) ) {
WPCF7_ContactForm::register_post_type();
return true;
} else {
return false;
}
}