Я работаю над некоторыми типами постов. Я закончил первый и понял, что код метабокса, который я использовал, может быть повторно использован другими, будущими, пользовательскими типами сообщений (а также страницами, сообщениями и т. Д.). Поэтому я поместил класс в его собственный файл php и включил его из файла functions.php моей дочерней темы. Я никогда не использовал классы раньше, но я думал, что смогу затем вызывать этот класс откуда угодно, так как это то, что я делаю для функций. вместо этого я вызвал его из файла post-types.php и получил следующую ошибку:
"Неустранимая ошибка: класс 'My_meta_box' не найден в D: \ helga \ xampp \ htdocs \ plagueround \ wp-content \ themes \ plagueround_new2 \ functions \ post-types.php в строке 73"
В файле functions.php моей дочерней темы я включил файл, в котором живет мой класс:
define('CHILDTHEME_DIRECTORY', get_stylesheet_directory() . '/');
// Meta Box Class - makes meta boxes
require_once(CHILDTHEME_DIRECTORY . 'functions/meta_box_class.php');
вот мой класс
//My Meta Box CLASS
//from: http://www.deluxeblogtips.com/2010/05/howto-meta-box-wordpress.html
class My_meta_box {
protected $_meta_box;
// create meta box based on given data
function __construct($meta_box) {
$this->_meta_box = $meta_box;
add_action('admin_menu', array(&$this, 'add'));
add_action('save_post', array(&$this, 'save'));
}
/// Add meta box for multiple post types
function add() {
foreach ($this->_meta_box['pages'] as $page) {
add_meta_box($this->_meta_box['id'], $this->_meta_box['title'], array(&$this, 'show'), $page, $this->_meta_box['context'], $this->_meta_box['priority']);
}
}
// Callback function to show fields in meta box
function show() {
global $post;
// Use nonce for verification
echo '<input type="hidden" name="mytheme_meta_box_nonce" value="', wp_create_nonce(basename(__FILE__)), '" />';
echo '<table class="form-table">';
foreach ($this->_meta_box['fields'] as $field) {
// get current post meta data
$meta = get_post_meta($post->ID, $field['id'], true);
echo '<tr>',
'<th style="width:20%"><label for="', $field['id'], '">', $field['name'], '</label></th>',
'<td>';
switch ($field['type']) {
case 'text':
echo '<input type="text" name="', $field['id'], '" id="', $field['id'], '" value="', $meta ? $meta : $field['std'], '" size="30" style="width:97%" />',
'<br />', $field['desc'];
break;
case 'textarea':
echo '<textarea name="', $field['id'], '" id="', $field['id'], '" cols="60" rows="4" style="width:97%">', $meta ? $meta : $field['std'], '</textarea>',
'<br />', $field['desc'];
break;
case 'select':
echo '<select name="', $field['id'], '" id="', $field['id'], '">';
foreach ($field['options'] as $option) {
echo '<option', $meta == $option ? ' selected="selected"' : '', '>', $option, '</option>';
}
echo '</select>';
break;
case 'select2': //for when value and display text don't match
//$options array must be multidimensional with both the 'value' and the 'text' for each option
//for example = array( array(text=>text1,value=>value1),array(text=>text2,value=>value2))
//then in <option> value = $option['value'] and text = $option['text']
echo '<select name="', $field['id'], '" id="', $field['id'], '">';
foreach ($field['options'] as $option) {
echo '<option value="',$option['value'],'"', $meta == $option['value'] ? ' selected="selected"' : '', '>', $option['desc'], '</option>';
}
echo '</select>';
break;
case 'radio':
foreach ($field['options'] as $option) {
echo '<input type="radio" name="', $field['id'], '" value="', $option['value'], '"', $meta == $option['value'] ? ' checked="checked"' : '', ' />', $option['name'];
}
break;
case 'checkbox':
echo '<input type="checkbox" name="', $field['id'], '" id="', $field['id'], '"', $meta ? ' checked="checked"' : '', ' />';
break;
}
echo '<td>',
'</tr>';
}
echo '</table>';
}
// Save data from meta box
function save($post_id) {
// verify nonce
if (!wp_verify_nonce($_POST['mytheme_meta_box_nonce'], basename(__FILE__))) {
return $post_id;
}
// check autosave
if (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE) {
return $post_id;
}
// check permissions
if ('page' == $_POST['post_type']) {
if (!current_user_can('edit_page', $post_id)) {
return $post_id;
}
} elseif (!current_user_can('edit_post', $post_id)) {
return $post_id;
}
foreach ($this->_meta_box['fields'] as $field) {
$old = get_post_meta($post_id, $field['id'], true);
$new = $_POST[$field['id']];
if ($new && $new != $old) {
update_post_meta($post_id, $field['id'], $new);
} elseif ('' == $new && $old) {
delete_post_meta($post_id, $field['id'], $old);
}
}
}
}
затем в моем файле post-types.php, где я определяю некоторые мета-блоки для пользовательского типа записи:
$prefix = '_events_';
$post_id = $_GET['post'] ? $_GET['post'] : $_POST['post_ID'] ;
$events_meta_box = array(
'id' => 'wpt_events',
'title' => 'Events Options',
'pages' => array('events'), // multiple post types possible
'context' => 'side',
'priority' => 'low',
'fields' => array(
array(
'name' => 'Headline',
'desc' => 'Enter the heading you\'d like to appear before the video',
'id' => $prefix . 'heading1',
'type' => 'text',
'std' => ''
),
)
);
$my_box = new My_meta_box($events_meta_box);
Итак, как мне ссылаться на классы из других файлов?
редактирует / ПРОДОЛЖЕНИЕ
простое перемещение оператора require_once в post-types.php (тот, кто пытается вызвать класс), похоже, сработало. но, черт возьми, я попробовал скрипт автозагрузки
function __autoload($className)
{
require(CHILDTHEME_DIRECTORY .'functions/class_' . $className . '.php') ;
}
где я переименовал свой файл класса в class_My_meta_box.php, а My_meta_box - имя класса
, что приводит к следующим ошибкам:
Предупреждение: require (D: \ helga \ xampp \ htdocs \ plagueround / wp-content / themes / plagueround_new / functions / class_WP_User_Search.php) [function.require]: не удалось открыть поток: нет такого файла или каталога в D: \ helga \ xampp \ htdocs \ plagueround \ wp-content \ themes \ plagueround_new \ functions.php в строке 66
Неустранимая ошибка: require () [function.require]: не удалось открыть обязательный файл 'D: \ helga \ xampp \ htdocs \ plagueround / wp-content / themes / plagueround_new / functions / class_WP_User_Search.php' (include_path = '.; D: \ helga \ xampp \ php \ PEAR ') в D: \ helga \ xampp \ htdocs \ plagueround \ wp-content \ themes \ plagueround_new \ functions.php в строке 66
Я не совсем понимаю, что он говорит, НО я думаю, что он пытается автоматически загрузить некоторый класс WordPress по умолчанию ... и ищет в моем каталоге, где его, очевидно, не существует.