|
发表于 2023-5-18 09:27:55
来自手机
来自 广东深圳
如果不想修改functions.php,有其他更好的办法吗?
如果您不想修改主题 `functions.php` 文件,也可以创建一个自定义插件来添加新的文章类型。
以下是创建自定义插件的步骤:
1. 创建新插件:在 WordPress 插件目录中创建一个新的子目录,例如 `site-wide-notices-plugin`,然后在该目录中创建一个新的 PHP 文件,例如 `site-wide-notices-plugin.php`,并在文件头部添加必需的标记,例如:
```
<?php
/*
Plugin Name: Site Wide Notices Plugin
Description: Adds a new custom post type for site-wide notices.
Version: 1.0
Author: Your Name
Author URI: http://example.com
*/
// Add plugin code here...
```
在示例中,我们创建了一个名为 `Site Wide Notices Plugin` 的新插件,该插件添加了一个新的自定义文章类型,并指定了版本、作者和作者 URI 等元信息。
2. 在插件中注册新的文章类型:在 PHP 文件中添加以下代码,用于注册一个名为“site-wide-notices”的自定义文章类型:
```
add_action('init', 'create_custom_post_type');
function create_custom_post_type() {
$labels = array(
'name' => 'Site Wide Notices',
'singular_name' => 'Site Wide Notice',
'add_new' => 'Add New',
'add_new_item' => 'Add New Site Wide Notice',
'edit_item' => 'Edit Site Wide Notice',
'new_item' => 'New Site Wide Notice',
'view_item' => 'View Site Wide Notice',
'search_items' => 'Search Site Wide Notices',
'not_found' => 'No site-wide notices found',
'not_found_in_trash' => 'No site-wide notices found in trash'
);
$args = array(
'labels' => $labels,
'public' => true,
'has_archive' => true,
'supports' => array('title', 'editor', 'thumbnail', 'excerpt', 'custom-fields', 'revisions'),
'taxonomies' => array('category', 'post_tag'),
'menu_icon' => 'dashicons-megaphone',
'menu_position' => 5,
'rewrite' => array('slug' => 'site-wide-notices')
);
register_post_type('site-wide-notices', $args);
}
```
在示例中,我们使用 `register_post_type()` 函数注册一个新的文章类型,并定义了该文章类型的名称、标签和其他设置。
3. 在后台中添加公告编辑页面:您可以使用 `add_meta_box()` 函数在后台中添加公告编辑页面,并自定义字段和元数据,例如:
```
add_action('add_meta_boxes', 'add_site_wide_notices_boxes');
function add_site_wide_notices_boxes() {
add_meta_box('notice-details', 'Notice Details', 'notice_details_meta_box', 'site-wide-notices', 'normal', 'high');
}
function notice_details_meta_box($post) {
wp_nonce_field(basename(__FILE__), 'notices_nonce');
$notice_title = get_post_meta($post->ID, 'notice_title', true);
$notice_content = get_post_meta($post->ID, 'notice_content', true);
?>
<p>
<label for="notice-title">Notice Title</label><br>
<input type="text" id="notice-title" name="notice_title" style="width: 100%;" value="<?php echo $notice_title; ?>">
</p>
<p>
<label for="notice-content">Notice Content</label><br>
<?php wp_editor($notice_content, 'notice-content', array('textarea_rows' => 10)); ?>
</p>
<?php
}
add_action('save_post', 'save_site_wide_notice_meta_box');
function save_site_wide_notice_meta_box($post_id) {
if (!isset($_POST['notices_nonce']) || !wp_verify_nonce($_POST['notices_nonce'], basename(__FILE__)))
return;
if (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE)
return;
if (isset($_POST['notice_title'])) {
update_post_meta($post_id, 'notice_title', sanitize_text_field($_POST['notice_title']));
}
if (isset($_POST['notice_content'])) {
update_post_meta($post_id, 'notice_content', wp_kses_post($_POST['notice_content']));
}
}
```
在示例中,我们使用 `add_meta_box()` 函数添加了一个名为 `notice-details` 的元框,用于在编辑页面上显示自定义字段和元数据。在 `notice-details_meta_box()` 函数中,我们使用 `wp_editor()` 函数添加了一个可视化编辑器,用于编辑公告内容。在 `save_site_wide_notice_meta_box()` 函数中,我们使用 `update_post_meta()` 函数将公告标题和内容保存到 WordPress 数据库中。
4. 在前端页面中显示公告:在 WordPress 主题文件中添加以下代码,以在您的网站上显示公告:
```
$args = array(
'post_type' => 'site-wide-notices',
'posts_per_page' => 3,
'order' => 'DESC',
'orderby' => 'date'
);
$query = new WP_Query($args);
if ($query->have_posts()) :
while ($query->have_posts()) : $query->the_post(); ?>
<div class="notice">
<h3><?php the_title(); ?></h3>
<div class="notice-content"><?php the_content(); ?></div>
</div>
<?php endwhile;
wp_reset_postdata();
endif;
```
在示例中,我们使用 `WP_Query` 类从 `site-wide-notices` 文章类型中获取最近发布的 3 条公告,并在前端页面中循环遍历并显示标题和内容等信息。 |
|