zoukankan      html  css  js  c++  java
  • Wordpress 文章添加副标题

    后台编辑区添加自定义副标题字段

    /**
     * Add Subtitle in all post
     */
    function article_subtitle( $post ) {
        if ( ! in_array( $post->post_type, [ 'post', 'page', 'knowledgebase' ], true ) ) {
            return; 
        }
        // The subtitle field.
        $_stitle = sanitize_text_field( get_post_meta( $post->ID, '_article_subtitle', true ) );
        echo '<label for="article_subtitle">' . __( 'Sub Title ' ) . '</label>';
        echo '<input type="text" name="article_subtitle" id="article_subtitle" value="' .  $_stitle . '" size="100" spellcheck="true" autocomplete="off" />';
    }
    
    function article_save_subtitle( $post_ID, $post, $update ) {
        if ( ! in_array( $post->post_type, [ 'post', 'page', 'knowledgebase' ], true ) ) {
            return;
        }
        // Prevent to execute twice.
        if ( defined( 'DOING_AJAX' ) && DOING_AJAX ) {
            return;
        }
        if (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE) {
            return;
        }
        // Get the subtitle value from $_POST.
        $_stitle = filter_input( INPUT_POST, 'article_subtitle', FILTER_SANITIZE_STRING );
        if ( $update ) {
            // Update the post meta.
            update_post_meta( $post_ID, '_article_subtitle', sanitize_text_field( $_stitle ) );
        } else if ( ! empty ( $_stitle ) ) {
            // Add unique post meta.
            add_post_meta( $post_ID, '_article_subtitle', sanitize_text_field( $_stitle ), true );
        }
    }
    add_action( 'edit_form_after_title', 'article_subtitle', 20 );
    add_action( 'wp_insert_post', 'article_save_subtitle', 20, 3 );

    保存或预览文章,会将副标题字段插入到数据库中的 wp_postmeta 表中,如下图所示:

    需要在文章模板页面中添加副标题显示的样式等,代码如下:

    最终效果如下图所示:

  • 相关阅读:
    图书管理系统
    关键路径
    最短路径

    最小生成树、最短路径
    Huffman编码
    LA 3401
    UVA 10881
    OI 刷题记录——每周更新
    4396: [Usaco2015 dec]High Card Wins
  • 原文地址:https://www.cnblogs.com/ryanzheng/p/10220078.html
Copyright © 2011-2022 走看看