我想向 table 添加两个自定义字段wp_posts
,这是我的插件所需要的。现在要启用这些字段,我已经更改了 wordpress 的核心文件
wordpress/wp-admin/post.php
$data = compact( array( 'post_author', 'post_date', 'post_date_gmt', 'post_content', 'post_content_filtered', 'post_title', 'post_excerpt', 'post_status', 'post_type', 'comment_status', 'ping_status', 'post_password', 'post_name', 'to_ping', 'pinged', 'post_modified', 'post_modified_gmt', 'post_parent', 'menu_order', 'post_mime_type', 'guid' ) );
在这里,我添加了两个我想要的字段。
现在我希望这些东西可以安装(我在这里手动添加了两个字段)。
那么如何在插件中做到这一点。
我读过一篇文章
http://wp.tutsplus.com/tutorials/creative-coding/add-a-custom-column-in-posts-and-custom-post-types-admin-screen/
这里的钩子用于主题function.php,但我想在插件本身中做。
我正在使用 wordpress 3.6。
仍有任何困惑请评论我会更新。