wordpress插件中的变量indise html

时间:2017-06-04 11:30:06

标签: php html wordpress variables

我正在为Wordpress做第一个插件。

如何在HTML之间插入变量?我想在div之间插入$ today_output?

尝试了各种各样的事情,但这对我来说太混乱了。

      $today_post_id = 82;
      $post_content = get_post($today_post_id);
      $today_output = wpautop( $post_content->post_content);

    $output = sprintf(
        '<div%2$s class="et_pb_code et_pb_module%3$s">
            want to add today_output variable here
        </div> <!-- .et_pb_today -->',
        $this->shortcode_content,
        ( '' !== $module_id ? sprintf( ' id="%1$s"', esc_attr( $module_id ) ) : '' ),
        ( '' !== $module_class ? sprintf( ' %1$s', esc_attr( $module_class ) ) : '' )
    );


    return  $output;

谢谢, 威乐

1 个答案:

答案 0 :(得分:0)

也许尝试使用字符串连接,而不是像这样:

<?php 

    $output = '<div class="' . $classname . '">' .
                '<div>' . $content . '</div>' .
              '</div>';

?>