如何在WordPress的博客标题下添加更多文本

时间:2013-08-11 19:23:24

标签: wordpress

我想在我的博客标题下面添加一些文字,我已经研究过这一天的大部分时间,并且无法弄清楚如何做到这一点,我不是PHP的专家,但我对所有的php文件需要,我已经有了一个子主题,我用我的子主题文件夹中的functions.php文件构建。 我的孩子主题建立在WordPress Twenty-Eleven上!

以下是截图:

enter image description here

我尝试执行此操作的网站是here

2 个答案:

答案 0 :(得分:3)

有一种方法可以在不安装插件的情况下添加此简单功能。

除非我读错了,否则你要做的就是添加一个新的元框,你可以在其中插入一个子标题,并在该帖子上显示。

functions.php 中,添加此项以创建一个元框来存放子标题字段

function your_sub_title() {
    add_meta_box('your_sub_title_metabox', 'Edit Sub Title', 'your_sub_title_metabox', 'post', 'normal', 'default'); ## Adds a meta box to post type
}

现在也在 functions.php 中添加新字段的代码

function your_sub_title_metabox() {

    global $post; ## global post object

    wp_nonce_field( plugin_basename( __FILE__ ), 'your_sub_title_nonce' ); ## Create nonce

    $subtitle = get_post_meta($post->ID, 'sub_title', true); ## Get the subtitle

    ?>
    <p>
        <label for="sub_title">Sub Title</label>
        <input type="text" name="sub_title" id="sub_title" class="widefat" value="<?php if(isset($subtitle)) { echo $subtitle; } ?>" />
    </p>
    <?php
}

接下来要做的就是创建保存功能。同样在 functions.php

function sub_title_save_meta($post_id, $post) {
    global $post;

    if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE )
        return false; ## Block if doing autosave

    if ( !current_user_can( 'edit_post', $post->ID )) {
        return $post->ID; ## Block if user doesn't have priv
    }

    if ( !wp_verify_nonce( $_POST['your_sub_title_nonce'], plugin_basename(__FILE__) )) {


    } else {
        if($_POST['sub_title']) {
            update_post_meta($post->ID, 'sub_title', $_POST['sub_title']);
        } else {
            update_post_meta($post->ID, 'sub_title', '');
        }
    }

    return false;

}
add_action('save_post', 'sub_title_save_meta', 1, 2);

然后,在 single.php 模板中的the_title()下面

...
the_title();
$subtitle = get_post_meta(get_the_ID(), 'sub_title', true);
if(isset($subtitle)) {
  echo $subtitle;
}

答案 1 :(得分:0)

我建议您查看一个允许添加字幕或类似内容的插件,这意味着您需要创建一个自定义字段,以便您可以在帖子的基础上添加标题下的文字。我强烈推荐Meta-Box

要安装Meta-Box,您只需安装Meta-Box插件,就像安装仪表板中的任何其他插件一样。完成后,在主题目录中创建一个名为“custom-meta.php”的新文件并复制此代码。

    <?php

$prefix = '';
global $meta_boxes;
$meta_boxes = array();

// Custom Post Info Meta Box
$meta_boxes[] = array(

    'id' => 'custom_post_info',
    'title' => __( 'Custom Post Info', 'rwmb' ),
    'pages' => array( 'post', 'page' ),
    'context' => 'normal',
    'priority' => 'high',
    'autosave' => true,
    'fields' => array(
        array(
            'name'  => __( 'Subtitle', 'rwmb' ),
            'id'    => "{$prefix}subtitle",
            'desc'  => __( 'Enter Subtitle Here', 'rwmb' ),
            'type'  => 'text',
            'std'   => __( '', 'rwmb' ),
            'clone' => false,
        ),
    ),
);


/********************* META BOX REGISTERING ***********************/

/**
 * Register meta boxes
 *
 * @return void
 */
function register_meta_boxes()
{
    if ( !class_exists( 'RW_Meta_Box' ) )
        return;

    global $meta_boxes;
    foreach ( $meta_boxes as $meta_box )
    {
        new RW_Meta_Box( $meta_box );
    }
}
add_action( 'admin_init', 'register_meta_boxes' );

然后通过在有意义的地方添加此行来更新您的函数文件以包含“custom-meta.php”文件。

include 'custom-meta.php';

然后返回到您的帖子并查看是否有一个新的框来插入字幕。如果你这样做,太棒了!

然后在每个帖子上都有自定义字段后,您需要做的就是将该数据提取到主题模板中。你需要进入你的single.php文件,然后使用这行代码。

<?php the_title(); ?>

并将其添加到下方。我怀疑这是一个问题,但是为了帮助函数工作,它需要在循环中。

<?php echo rwmb_meta('subtitle'); ?>