تابع ووکامرسی wc_list_pages افزودن کلاس active به صفحه داده شده

تابع ووکامرسی wc_list_pages افزودن کلاس active به صفحه داده شده

تابع ووکامرسی wc_list_pages – افزودن کلاس active به صفحات داده شده ووکامرس

Syntax – سینتکس

(string) wc_list_pages( (string) $pages ); 

Parameters – پارامتر ها (1)

  • 1- $pages (string)

Usage – نحوه استفاده

if ( !function_exists( 'wc_list_pages' ) ) { 
    require_once ABSPATH . PLUGINDIR . 'woocommerce/includes/wc-page-functions.php'; 
} 
  
// The pages. 
$pages = ''; 
  
// NOTICE! Understand what this does before running. 
$result = wc_list_pages($pages); 
    

Defined – محل تعریف

/includes/wc-page-functions.php

function wc_list_pages( $pages ) { 
    if ( is_woocommerce() ) { 
        // Remove current_page_parent class from any item. 
        $pages = str_replace( 'current_page_parent', '', $pages ); 
        // Find shop_page_id throughwoocommerceoptions. 
        $shop_page = 'page-item-' . wc_get_page_id( 'shop' ); 
 
        if ( is_shop() ) { 
            // Add current_page_item class to shop page. 
            $pages = str_replace( $shop_page, $shop_page . ' current_page_item', $pages ); 
        } else { 
            // Add current_page_parent class to shop page. 
            $pages = str_replace( $shop_page, $shop_page . ' current_page_parent', $pages ); 
        } 
    } 
 
    return $pages; 
} 

versions – نسخه ها

از نسخه : 3.0.2

نسخه فعلی : 3.0.6

دیگر نسخه ها : 3.0.6 , 3.0.5 , 3.0.4 , 3.0.3 , 3.0.2

ارسال نظر

جهت استفاده از کد حتما از تگ pre استفاده نمایید .

contact us