Wordpress using echo vs return in shortcode function

后端 未结 6 2066
我在风中等你
我在风中等你 2021-01-01 22:07

I just noticed, both echo and return works fine for displaying content from a shortcode function in wordpress.

function foobar_short         


        
6条回答
  •  走了就别回头了
    2021-01-01 22:33

    If you are outputting a lot of contents, then you should use:

    add_shortcode('test', 'test_func');
    
    function test_func( $args ) {
      ob_start();
      ?> 
       
      

提交回复
热议问题