当复选框勾选时,wordpress选项标题不会出现在网站上

时间:2014-12-23 09:52:38

标签: php wordpress checkbox options

如果勾选了复选框,则显示信息时出现问题。我认为if语句不正确。

以下是我的选项页面中的代码:

<div class="admin-options">Title:<input type="checkbox" name="option_title" value="1" <?php checked( '1', get_option( 'option_title' ) ); ?> ></div>  

 register_setting( 'option_control', 'option_title' );       

这是发送到显示的代码:

 function display_option_title() {     

if (get_option('option_title') == 1 || get_option('option_title') <> ''){
echo ' 
<a href="<?php the_permalink(); ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>">
<h2><?php the_title(); ?></h2></a>
';
 }
 }

 add_action( 'print_option_title', 'display_option_title' );     

任何帮助都会有所帮助。

1 个答案:

答案 0 :(得分:0)

您在字符串中使用php标记,因此不会对其进行解析。

像这样使用:

function display_option_title() {
    if (get_option('option_title') == 1 || get_option('option_title') <> '') {
        ?>
        <a href="<?php the_permalink(); ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>">
            <h2><?php the_title(); ?></h2>
        </a>
        <?php
    }
}