>  기사  >  백엔드 개발  >  WordPress의 기사에 고정 필드를 추가하는 방법 소개

WordPress의 기사에 고정 필드를 추가하는 방법 소개

不言
不言원래의
2018-07-04 14:04:392913검색

이 글은 주로 WordPress의 기사에 고정 필드를 추가하는 방법을 소개합니다. 이제는 모든 사람과 공유합니다.

Let WordPress 기사 data 기사 편집 페이지에서 편집하고 나머지 API를 통해 얻을 수 있도록 테이블에 필드를 추가합니다.

예: 기사에 썸네일 필드 litpic 추가

먼저 mysql을 통해 wp_posts 기사 테이블에 필드 litpic을 추가합니다

그런 다음 함수에서 테마의 .php 뒤에 다음 코드를 추가합니다:

add_action( 'add_meta_boxes', 'myplugin_add_custom_box');
 

add_action( 'save_post', 'myplugin_save_postdata');function myplugin_add_custom_box() {
add_meta_box('myplugin_sectionid',
'设置缩略图', // 可自行修改标题文字
'myplugin_inner_custom_box',
'post');
}function myplugin_inner_custom_box( $post ) {
global $wpdb;
// Use nonce for verification
wp_nonce_field( plugin_basename( __FILE__ ), 
'myplugin_noncename' );
// 获取固定字段litpic的值,用于显示之前保存的值
// 此处wp_posts新添加的字段为litpic,多个用半角逗号隔开
$date = $wpdb->get_row( $wpdb->prepare( "SELECT litpic FROM $wpdb->posts WHERE ID = %d", $post->ID) );
// litpic  字段输入框的HTML代码
echo &#39;<label for="litpic_new_field">图片url </label>&#39;;
echo &#39;<input type="text" id="litpic_new_field" name="litpic_new_field" value="&#39;.$date->litpic.&#39;" size="28" />&#39;;
// 多个字段依此类推
}
function myplugin_save_postdata( $post_id ) {
// verify if this is an auto save routine.
// If it is our form has not been submitted, so we dont want to do anything
if ( defined( ’DOING_AUTOSAVE’ ) && DOING_AUTOSAVE )return;
// verify this came from the our screen and with proper authorization,
// because save_post can be triggered at other times
if ( !wp_verify_nonce( $_POST[&#39;myplugin_noncename&#39;], plugin_basename( __FILE__ ) ) )return;
// 权限验证
if ( &#39;post&#39; == $_POST[&#39;post_type&#39;] ) {
if ( !current_user_can( &#39;edit_post&#39;, $post_id ) )return;
}
// 获取编写文章时填写的固定字段的值,多个字段依此类推
$litpic = $_POST[&#39;litpic_new_field&#39;];global $wpdb;$wpdb->update( "$wpdb->posts",
// 以下一行代码,多个字段的话参照下面的写法,单引号中是字段名,右边是变量值。半角逗号隔开
array( &#39;litpic&#39; => $litpic),
array( &#39;ID&#39; => $post_id ),
// 添加了多少个新字段就写多少个%s,半角逗号隔开
array( &#39;%s&#39;),
array( &#39;%d&#39;)
);
}

추가한 후 기사 페이지에 litpic 필드 입력 상자가 표시됩니다. 그림과 같이: #🎜 🎜#

그러나 현재 나머지 API는 아직 litpic 필드를 출력하지 않습니다.

/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php 파일을 엽니다.

다음 코드 추가:

if ( ! empty( $schema[&#39;properties&#39;][&#39;litpic&#39;] ) ) {            
$data[&#39;litpic&#39;] = $post->litpic;
        }

&#39;litpic&#39;        => array(                    
&#39;description&#39; => __( &#39;A litpic to protect access to the content and excerpt.&#39; ),
                    &#39;type&#39;        => &#39;string&#39;,
                    &#39;context&#39;     => array( &#39;view&#39;, &#39;edit&#39;, &#39;embed&#39; ),
                ),

#🎜🎜 #

$post_type_attributes = array(            &#39;title&#39;,
            &#39;editor&#39;,
            &#39;author&#39;,
            &#39;excerpt&#39;,
            &#39;thumbnail&#39;,
            &#39;comments&#39;,
            &#39;revisions&#39;,
            &#39;page-attributes&#39;,
            &#39;post-formats&#39;,
            &#39;custom-fields&#39;,
            &#39;litpic&#39;,
        );        $fixed_schemas = array(            &#39;post&#39; => array(                &#39;title&#39;,
                &#39;editor&#39;,
                &#39;author&#39;,
                &#39;excerpt&#39;,
                &#39;thumbnail&#39;,
                &#39;comments&#39;,
                &#39;revisions&#39;,
                &#39;post-formats&#39;,
                &#39;custom-fields&#39;,
                &#39;litpic&#39;,
            ),

case &#39;litpic&#39;:                    
$schema[&#39;properties&#39;][&#39;litpic&#39;] = array(                        
&#39;description&#39; => __( &#39;The ID for the litpic of the object.&#39; ),
                        &#39;type&#39;        => &#39;string&#39;,
                        &#39;context&#39;     => array( &#39;view&#39;, &#39;edit&#39;, &#39;embed&#39; ),
                    );                    break;

이제 나머지 API는 litpic 필드를 출력할 수 있습니다.

위 내용은 모두의 학습에 도움이 되기를 바랍니다. 더 많은 관련 내용은 PHP 중국어 홈페이지를 주목해주세요!

관련 추천:

activemq Stomp 클래스 코드 정보


Yii 정보 프레임워크 추가, 삭제, 수정 확인

위 내용은 WordPress의 기사에 고정 필드를 추가하는 방법 소개의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.