مباحث کلی

سفارشات زنده

Estimated reading: 1 minute 709 views

در این برگه سفارشات روز جاری بصورت زنده نمایش داده میشوند. با کلیک روی دکمه جزئیات هر سفارش در هر ستون میتوان به برگه جزئیات سفارش وارد شده و از وضعیت پرداخت آن آگاه شده یا درصورت نیاز تغییراتی در آن اعمال نمایید.

3دیدگاه

  • Eh Jewel

    ۲۲ مهر ۱۳۹۹

    Note that get_the_content doesn’t return the same thing as what the_content displays. For that you need to do this:

    $content = apply_filters( \'the_content\', get_the_content() );
    echo $content;
    
    Reply
    • Demo User

      ۲۲ مهر ۱۳۹۹

      If you are wanting to check if a custom (non core block) is for a page or post, include the namespace/name-of-block:

      if ( has_block( \'my-namespace/block-name\' ) ) {
       // Do stuff here.
      }
      
      Reply
  • Eh Jewel

    ۲۲ مهر ۱۳۹۹
    // Note: does not support arrays
    if ( has_block( array( \'gallery\', \'button\' ) ) ) {
        // error
    }
     
    // Use || instead
    if ( has_block( \'gallery\' ) || has_block( \'button\' ) ) {
        // Do something.
    }
    
    Reply

Leave a Comment

اشتراک گذاری مقاله

سفارشات زنده

لینک صفحه

محتویات