许多时候我们需要为自定义模型添加置DING功能,代码如下:
add_action( 'add_meta_boxes', 'ashuwp_add_product_box' );
function ashuwp_add_product_box(){
add_meta_box( 'ashuwp_product_sticky', '在博客中置DING', 'ashuwp_product_sticky', 'product', 'side', 'high' );
}
function ashuwp_product_sticky (){
?>
<input id="super-sticky" name="sticky" type="checkbox" value="sticky" />在博客中置DING
<?php
}
使用过程中,您将product替换为您的自定义模型名。
以上代码将名为“在博客中置DING”的自定义字段面板会添加到自定义文章类型的文章发布页面。其中有几个参数,代码中的"product"表示产品模型;"side"表示显示在页面的侧面;"high"表示显示在页面的上方。这样,我们为WordPress主题的自定义文章类型添加了top设置功能,