添加POST_TYPE——以增加Slider为例(未完待续)
Posted zhaoweidong
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了添加POST_TYPE——以增加Slider为例(未完待续)相关的知识,希望对你有一定的参考价值。
钩子:
add_action(‘init‘, ‘cube_slider_register‘);
add_action("admin_init", "cmp_slider_init");
add_action(‘save_post‘, ‘cmp_save_slide‘);
add_action("manage_cmp_slider_posts_custom_column", "cmp_slider_custom_columns");
add_action( ‘admin_menu‘, ‘cmp_slider_remove_menu_items‘ );
核心函数:
register_post_type( )
https://developer.wordpress.org/reference/functions/register_post_type/
register_taxonomy( $taxonomy, $object_type, $args );
https://developer.wordpress.org/reference/functions/register_taxonomy/
add_meta_box( )
manage_cmp_slider_posts_custom_column
以上是关于添加POST_TYPE——以增加Slider为例(未完待续)的主要内容,如果未能解决你的问题,请参考以下文章
为 post_type = ?? 的每个 id 添加元值WordPress