ここに示すように、グローバルカスタムフィールドをインストールしましたhttp://digwp.com/2009/09/global-custom-fields-take-two/
基本的に、これをthemes/themename/functions.phpに追加しました:
<?php
//Custom Theme Settings
add_action('admin_menu', 'add_gcf_interface');
function add_gcf_interface() {
add_options_page('Global Custom Fields', 'Global Custom Fields', '8', 'functions', 'editglobalcustomfields');
}
function editglobalcustomfields() {
// the html form (too long to bother you with)
}
?>
投稿を保存すると、空白のページが表示されます。ただし、投稿は保存されます。
何かお手伝いできますか?
これら2つのエラーが発生します
Notice: has_cap was called with an argument that is deprecated since version 2.0! Usage of user levels by plugins and themes is deprecated. Use roles and capabilities instead. in/www/newBlogs/w.sandbox/wp-includes/functions.php on line 2722
Warning: Cannot modify header information - headers already sent by (output started at /www/newBlogs/w.sandbox/wp-content/themes/boilerplate/functions.php:548) in/www/newBlogs/w.sandbox/wp-includes/pluggable.php on line 881
ありがとう