如何将div元素添加到php函数

时间:2014-03-27 18:35:45

标签: php html

我已经使用了php代码,我已将其添加到我的wordpress主题functions.php文件中。

一切都很好。我要做的就是添加一个div类来为输出设置样式。

我不知道该怎么做,非常感谢任何建议。我尝试添加

<div class="custom"> echo get_option      ('woo_customtext'</div>);

然而,该网站返回页面错误。我添加的完整代码如下:

add_action( 'woo_post_inside_before',     'woo_add_custom' ); 

function woo_add_custom() { 

if (is_single()){ 
echo get_option ('woo_customtext'); 
} 
}

1 个答案:

答案 0 :(得分:0)

使用

if (is_single()) {
    echo '<div class="custom">'.get_option('woo_customtext').'</div>';
}

或者

if (is_single()) {
    ?>
<div class="single"><?php echo get_option('woo_customtext'); ?></div>
    <?php
}

要将HTML与PHP混合,您需要将其打印为字符串(因此在第一个示例中为'引号)或在编写HTML之前退出PHP(因此?>和{{ 1}}在第二个)。