$conf, $runtime; function_exists('chdir') AND chdir(APP_PATH); $r = 'mysql' == $conf['cache']['type'] ? website_set('runtime', $runtime) : cache_set('runtime', $runtime); } function runtime_truncate() { global $conf; 'mysql' == $conf['cache']['type'] ? website_set('runtime', '') : cache_delete('runtime'); } register_shutdown_function('runtime_save'); ?>While loop shortcode problem|Programmer puzzle solving
最新消息:Welcome to the puzzle paradise for programmers! Here, a well-designed puzzle awaits you. From code logic puzzles to algorithmic challenges, each level is closely centered on the programmer's expertise and skills. Whether you're a novice programmer or an experienced tech guru, you'll find your own challenges on this site. In the process of solving puzzles, you can not only exercise your thinking skills, but also deepen your understanding and application of programming knowledge. Come to start this puzzle journey full of wisdom and challenges, with many programmers to compete with each other and show your programming wisdom! Translated with DeepL.com (free version)

While loop shortcode problem

matteradmin9PV0评论

I have created a shortcode using the while loop, which is going to break the loop when used with the page builder. How to solve it. Here may custom shortcode here my showing part

I have created a shortcode using the while loop, which is going to break the loop when used with the page builder. How to solve it. Here may custom shortcode here my showing part

Share Improve this question edited Jan 14, 2019 at 9:29 fuxia 107k39 gold badges255 silver badges461 bronze badges asked Jan 14, 2019 at 8:14 RohitRohit 133 bronze badges
Add a comment  | 

1 Answer 1

Reset to default 0

You don't use global $wp_query object anywhere in your code, so there is no point in calling wp_reset_query().

On the other hand, you do use global $post variable, so after your code you should restore it's original value with wp_reset_postdata();.

So change wp_reset_query() to wp_reset_postdata() and it should be OK.

And one more thing...

Shortcodes should return their values and they should not display anything.

So you can't use the_title() inside of it - this template tags echoes its value and doesn't return anything.

You should change it to get_the_title().

Articles related to this article

Post a comment

comment list (0)

  1. No comments so far