我正在尝试做一些我不确定的事情,需要一个大方向。我有一个Wordpress 3.31多站点设置。我设置了几个自定义角色。学生,教师1,教师2,教师3,家人和朋友。
我还设置了几种自定义帖子类型。教师自定义帖子类型是我所关注的。
在不久的将来,我们将不得不在此系统中添加约3000个博客。我希望自定义帖子类型的名称是该博客教师角色中人员的姓名 - 自动。每个博客最多可以有三名教师。
所以我想以某种方式查询wp_usermeta的教师角色,然后显示教师的名字。在自定义帖子设置(下面)由于学生可能有几位老师,因此必须循环三次。那里的任何人都知道这是否可行并且是一个大方向?
即。
register_post_type( 'journal_teacher',
array(
'labels' => array(
'name' => __(query-here-for-teacher-role) ),...
答案 0 :(得分:1)
如果您正在考虑将Wordpress转换为LMS系统,我强烈建议您使用课件http://coursewa.re/。它会对你有所帮助。
答案 1 :(得分:1)
我有自定义帖子类型包括我使用。大致包括这样的事情:
你可能会为$ types数组创建一些东西来帮助你完成你需要的东西。
<?php
// ADDING CUSTOM POST TYPE
add_action('init', 'all_custom_post_types');
function all_custom_post_types() {
$types = array(
// Student
array('the_type' => 'students',
'single' => 'Student',
'plural' => 'Students',
'hierarchical' => true,
'support' => array('title','editor','thumbnail','custom-fields'),
'taxonomy' => array('') ),
// Teacher1
array('the_type' => 'teacher1',
'single' => 'Teacher1',
'plural' => 'Teachers1',
'hierarchical' => true,
'support' => array('title','editor','thumbnail','custom-fields'),
'taxonomy' => array('') ),
// Teacher2
array('the_type' => 'teacher2',
'single' => 'Teacher2',
'plural' => 'Teachers2',
'hierarchical' => true,
'support' => array('title','editor','thumbnail','custom-fields'),
'taxonomy' => array('') ),
// Teacher3
array('the_type' => 'teacher3',
'single' => 'Teacher3',
'plural' => 'Teachers3',
'hierarchical' => true,
'support' => array('title','editor','thumbnail','custom-fields'),
'taxonomy' => array('') ),
// Family and Friends - not sure if this is 2 or 1 category - but you get the idea by now.
array('the_type' => 'family-and-friends',
'single' => 'Family and Friends',
'plural' => 'Family and Friends',
'hierarchical' => true,
'support' => array('title','editor','thumbnail','custom-fields'),
'taxonomy' => array('') )
);
foreach ($types as $type) {
$the_type = $type['the_type'];
$single = $type['single'];
$plural = $type['plural'];
$labels = array(
'name' => _x($plural, 'post type general name'),
'singular_name' => _x($single, 'post type singular name'),
'add_new' => _x('Add New', $single),
'add_new_item' => __('Add New '. $single),
'edit_item' => __('Edit '.$single),
'new_item' => __('New '.$single),
'view_item' => __('View '.$single),
'search_items' => __('Search '.$plural),
'not_found' => __('No '.$plural.' found'),
'not_found_in_trash' => __('No '.$plural.' found in Trash'),
'parent_item_colon' => ''
);
$args = array(
'labels' => $labels,
'public' => true,
'publicly_queryable' => true,
'show_ui' => true,
'query_var' => true,
'rewrite' => true, // $rewriter,
'capability_type' => 'post',
'hierarchical' => $type['hierarchical'],
'menu_position' => 5,
'supports' => $type['support']
);
register_post_type($the_type, $args);
}
}
?>
我为你修改了$ types数组 - 如果你需要调整它,希望你能从中理解这一点。如果没有,我可能需要更多信息。