我想为我的wordpress网站创建一个公告牌。这是一个我们可以写更新,活动计划促销材料等的地方。我尝试了很多插件,如WP Bulletin Board,bbpress等。但它们太复杂了。是否有任何简单的插件可以创建公告板?
答案 0 :(得分:1)
为什么不创建新的自定义帖子类型并将其用作公告板?
function bb_custom_post_event() {
$labels = array(
'name' => _x( 'Events', 'post type general name' ),
'singular_name' => _x( 'Event', 'post type singular name' ),
'add_new' => _x( 'Add New', 'event' ),
'add_new_item' => __( 'Add New Event' ),
'edit_item' => __( 'Edit Event' ),
'new_item' => __( 'New Event' ),
'all_items' => __( 'All Events' ),
'view_item' => __( 'View Events' ),
'search_items' => __( 'Search Events' ),
'not_found' => __( 'No events found' ),
'not_found_in_trash' => __( 'No events found in the Trash' ),
'parent_item_colon' => '',
'menu_name' => 'Bulletin Board'
);
$args = array(
'labels' => $labels,
'description' => '',
'public' => true,
'menu_position' => 25,
'menu_icon' => 'dashicons-calendar',
'supports' => array( 'title', 'editor', 'thumbnail', 'excerpt', 'comments' ),
'has_archive' => true,
);
register_post_type( 'event', $args );
}
add_action( 'init', 'bb_custom_post_event' );
将以上代码粘贴到functions.php文件中,您将拥有一个全新的事件部分,其行为与帖子完全相同。
如果你给我一些信息,我可以为你量身定制一些代码