WordPress自定义简码会破坏保存过程(post.php)

时间:2018-08-08 08:52:31

标签: php wordpress shortcode

我在WordPress中遇到一个关于短代码的奇怪问题。在添加了简码的情况下保存页面时,它会将我重定向到wp-admin/post.php并显示白页,其中包含html格式的简码结果(请参见屏幕截图1)。幸运的是,所有编辑都已保存。

有趣的是,我已经用完全相同的方法完成了12次。但是有一小段时间现在它不再起作用了。

我希望您能看到此问题,并知道我们可以采取什么措施来解决此问题。

Screenshot 1

我正在使用的PHP代码已添加到functions.php

我正在使用的简码为[showblog cat="planning" number=4]

function showblog_func( $atts ) {
    $atts = shortcode_atts([
        'number'    => '-1',
        'cat'       => '',
    ], $atts, 'showblog' );

    $numberposts = $atts['number'];
    $categorie = $atts['cat'];

    //args
    $args = array(
        'post_type'         => 'post',
        'posts_per_page'    => $numberposts,
        'order'             => 'ASC',
    );

    if($categorie != ""){
        $args = array(
            'post_type'         => 'post',
            'posts_per_page'    => $numberposts,
            'category_name'     => $categorie,
            'order'             => 'ASC',
        );
    }

    // The Query
    $the_query2 = new WP_Query( $args );

    // The Loop
    if ( $the_query2->have_posts() ) {
        echo '<ul class="blog-list clearfix">';
        while ( $the_query2->have_posts() ) {
            $the_query2->the_post();

            echo '<li class="blog-block">';
            echo '  <div class="blog-info">';
            echo '    <h4>'.get_the_title().'</h4>';
            echo '    <p>'.get_the_excerpt().'</p>';
            echo '    <a href="'.get_the_permalink().'" class="blog-button">Read full post</a>';
            echo '  </div>';
            echo '</li>';
        }
        echo '</ul>';
        /* Restore original Post Data */
        wp_reset_postdata();
    } else {
        // no posts found
    }
}
add_shortcode( 'showblog', 'showblog_func' );

2 个答案:

答案 0 :(得分:2)

可以通过在第一个ob_start();标签之后添加<?php来解决。

答案 1 :(得分:0)

您不能回显简码HTML。

您需要将HTML绑定到变量中,然后从简码中返回此HTML。

请检查下面的代码

function _login_popup() {

    $html = '<form id="user-login-form" method="post" action="#" class="js-form-redirect js-form-action" novalidate="">
               <div class="floating-label form-group">
                  <input id="useremail" name="user_name" required="" value="" type="email">
                  <label for="useremail">Email</label>
               </div>
               <div class="floating-label form-group">
                  <input id="userpassword" name="password" required="" value="" type="password">
                  <label for="userpassword">Password</label>
               </div>
               <div class="o-form__buttons text-right --small-center">
                  <button type="submit" id="submit_login" class="a-button-form --save a-no-before" value="edit">Sign in</button>
               </div>
      </form>';

return $html;
}
add_shortcode('yg-login-popup', '_login_popup');