第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機(jī)立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

將 wordpress 過濾變成函數(shù)

將 wordpress 過濾變成函數(shù)

PHP
一只甜甜圈 2023-04-15 16:48:24
我有一個按自定義分類過濾的 wordpress 頁面列表。如何將其轉(zhuǎn)換為 wp 函數(shù)以與簡碼一起使用?這是工作過濾:<?$custom_terms = get_terms('csgroup');foreach($custom_terms as $custom_term) {    wp_reset_query();    $args = array('post_type' => 'page', 'csgroup' => 'digital-expert-group',    // $args = array('post_type' => 'page', 'csgroup' => 'management-consultants-group',        'tax_query' => array(            array(                'taxonomy' => 'csgroup',                'field' => 'slug',                'terms' => $custom_term->slug,            ),        ),     );     $loop = new WP_Query($args);     if($loop->have_posts()) {        echo '<h2>'.$custom_term->name.'</h2>';        while($loop->have_posts()) : $loop->the_post();            echo '<a href="'.get_permalink().'">'.get_the_title().'</a><br>';        endwhile;     }}wp_reset_postdata();?>我想得到這個:function l1category_list_func(){==my php code with list of pages==}add_shortcode( 'l1category_list', 'l1category_list_func' );
查看完整描述

1 回答

?
嗶嗶one

TA貢獻(xiàn)1854條經(jīng)驗 獲得超8個贊

如果我正確理解你的問題,你想使用 return 語句返回你之前回顯的輸出的串聯(lián)字符串。


function l1category_list_func(){

    $output = '';

    $custom_terms = get_terms('csgroup');


    foreach($custom_terms as $custom_term) {

        wp_reset_query();

        $args = array('post_type' => 'page', 'csgroup' => 'digital-expert-group',

        // $args = array('post_type' => 'page', 'csgroup' => 'management-consultants-group',

            'tax_query' => array(

                array(

                    'taxonomy' => 'csgroup',

                    'field' => 'slug',

                    'terms' => $custom_term->slug,

                ),

            ),

         );


         $loop = new WP_Query($args);

         if($loop->have_posts()) {

            echo '<h2>'.$custom_term->name.'</h2>';


            while($loop->have_posts()) : $loop->the_post();

                $output .= '<a href="'.get_permalink().'">'.get_the_title().'</a><br>';

            endwhile;

         }

    }


    wp_reset_postdata();

    return $output;


}


查看完整回答
反對 回復(fù) 2023-04-15
  • 1 回答
  • 0 關(guān)注
  • 117 瀏覽

添加回答

舉報

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號