代码
PHP
- /*
- * WordPress自定义文章作者名称
- */
- add_action('post_submitbox_misc_actions', 'cus_author_createCustomField');
- add_action('save_post', 'cus_author_saveCustomField');
- add_filter('the_author','cus_author_the_author');
- /** 创建一个checkBox */
- function cus_author_createCustomField() {
- $post_id = get_the_ID();
- if (get_post_type($post_id) != 'post') {
- return;
- }
- /*
- * 提取现有的值
- * @var boolean
- */
- $value = get_post_meta($post_id, '_custom_author_name', true);
- /*
- * 添加 nonce 安全处理
- */
- wp_nonce_field('custom_author_nonce' , 'custom_author_nonce');
- ?>
- <div class="misc-pub-section misc-pub-section-last dashicons-before dashicons-admin-users">
- <label><b>作者:</b><input type="text" value="<?php echo $value ?>" name="_custom_author_name" /></label>
- </div>
- <?php
- }
- //保存配置信息 $post_id 文章的ID
- function cus_author_saveCustomField($post_id) {
- //自动保存不处理
- if (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE) {
- return;
- }
- //信息不正确不处理
- if (
- !isset($_POST['custom_author_nonce']) ||
- !wp_verify_nonce($_POST['custom_author_nonce'], 'custom_author_nonce')
- ) {
- return;
- }
- //用户无权编辑文章不处理
- if (!current_user_can('edit_post', $post_id)) {
- return;
- }
- //存在此项目就更新
- if (isset($_POST['_custom_author_name'])) {
- update_post_meta($post_id, '_custom_author_name', sanitize_text_field($_POST['_custom_author_name']));
- } else {
- //不存在就删除
- delete_post_meta($post_id, '_custom_author_name');
- }
- }
- function cus_author_the_author($author){
- $custom_author = get_post_meta(get_the_ID(), '_custom_author_name');
- if ($custom_author) {
- return $custom_author[0];
- } else {
- return $author;
- }
- }
- 核心思路就是通过钩子 the_author 来修改了文章作者的显示名称。
- 限定了文章类型为 post(文章),见6行。可自由发挥。
插件下载
本文作者为许都,未经作者授权,禁止转载。
你怎么都发些小白教程啊,拉低了博主的技术水平。天啦噜!
楼下这个明显是发外链的。直接删了,嗯
@leisu链接都没了
这个 Begin 主题自定义栏目里不是可以添加吗?
@明月登楼这个比较实在,就是每次发布文章必须添加作者。代码有待完善。现在没用知更鸟了。
不错顶一个