在页面构建器中显示的短代码但会打破前端

时间:2018-01-17 12:41:48

标签: php wordpress loops shortcode elementor

我正在使用elementor,一个Wordpress的页面构建器,我已经创建了一个简短的代码来在其中显示自定义的帖子类型循环...

当我插入短代码时,它在编辑器中正确显示但是当我保存它并尝试正常访问页面时,代码似乎打破了页面并且页面不断重复...这里&#39 ;页面链接:http://webserver-meetandengage-com.m11e.net/about-us/加载需要一段时间,但你会看到它重复...

我以为我可能没有正确关闭循环或其他什么,但我无法看到我出错的地方!值得注意的是,当直接添加到模板文件中时,循环可以正常工作。

循环在这里:

<div class="container team-members-container">

    <h2 style="font-weight: bold; text-align: center; margin:70px 0 70px 0;">The Team</h2>

    <div class="row">

        <?php
            $args = array( 
              'post_type' => 'team_members'
              // 'orderby' => 'none'
            );
            $the_query = new WP_Query( $args );
        ?>

        <?php if ( have_posts() ) : while ( $the_query->have_posts() ) : $the_query->the_post(); ?>

        <div class="col-sm-4">  
        <a href="<?php the_permalink(); ?>">

            <?php 

            $image = get_field('photo');

            if( !empty($image) ): ?>

                <img src="<?php echo $image['url']; ?>" alt="<?php echo $image['alt']; ?>" />

            <?php endif; ?>

            <h2 class="team-name"><?php the_field('name'); ?></h2>
            <p class="team-position"><?php the_field('position'); ?></p>

        </a>
        </div>

        <?php endwhile; wp_reset_postdata(); endif; ?>

    </div>

</div>

并且循环包含在名为team.php的文件中。用于创建短代码的functions.php文件中的代码是:

function get_team($atts) {
  ob_start();
  get_template_part('inc/team');
  return ob_get_clean();
}
add_shortcode('team', 'get_team');

创建要在我的页面编辑器中使用的短代码[team]

任何人都可以看到问题所在吗?谢谢你看:))

2 个答案:

答案 0 :(得分:1)

尝试将if ( have_posts() )更改为if ( $the_query->have_posts() )

条件需要正确访问$ the_query对象。

https://codex.wordpress.org/Class_Reference/WP_Query

答案 1 :(得分:1)

试试这个

 <div class="row">

        <?php
            $args = array( 
              'post_type' => 'post'
              // 'orderby' => 'none'
            );
            $the_query = new WP_Query( $args );
        ?>

        <?php if ( $the_query->have_posts()  ) : while ( $the_query->have_posts() ) : $the_query->the_post(); ?>

        <div class="col-sm-4">  
        <a href="<?php the_permalink(); ?>">

            <?php 

            $image = get_field('photo');            
            if( !empty($image) ): ?>

                <img src="<?php echo $image['url']; ?>" alt="<?php echo $image['alt']; ?>" />

            <?php endif; ?>

            <h2 class="team-name"><?php //the_field('name'); ?></h2>
            <p class="team-position"><?php //the_field('position'); ?></p>

        </a>
        </div>

        <?php endwhile; wp_reset_postdata(); endif; ?>

    </div>

</div>