日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程语言 > php >内容正文

php

php将多个页面写在一个页面,php – 将多个标签添加到WooCommerce单个产品页面

發布時間:2025/5/22 php 53 豆豆
生活随笔 收集整理的這篇文章主要介紹了 php将多个页面写在一个页面,php – 将多个标签添加到WooCommerce单个产品页面 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

我想為WooCommerce添加三個自定義標簽.我有下面的代碼,其中兩個顯示,但由于某種原因,屬性描述選項卡不顯示在頁面上.不僅數量定價選項卡不顯示其描述.我試圖將代碼的不同部分移動到不同的位置,我已檢查代碼是否有錯誤或缺少部分.這是我能得到的盡可能接近.

我的過程基本上是刪除我不想要的現有標簽,然后按照我希望它們出現的順序添加新標簽.

我有一種感覺,我錯過了一些東西.

這是我正在使用的代碼:

// WooCommerce Tabs

// REMOVE EXISTING TABS

add_filter( 'woocommerce_product_tabs', 'woo_remove_product_tabs', 98 );

function woo_remove_product_tabs( $tabs ) {

unset( $tabs['description'] ); // Remove the description tab

// unset( $tabs['reviews'] ); // Remove the reviews tab

unset( $tabs['additional_information'] ); // Remove the additional information tab

return $tabs;

}

// ADD ATTRIBUTE DESCRIPTION TAB

add_filter( 'woocommerce_product_tabs', 'woo_attrib_desc_tab' );

function woo_attrib_desc_tab( $tabs ) {

// Adds the Attribute Description tab

$tabs['attrib_desc_tab'] = array(

'title' => __( 'Desc', 'woocommerce' ),

'priority' => 100,

'callback' => 'woo_attrib_desc_tab_content'

);

return $tabs;

}

// ADD QUANTITY PRICING TAB

add_filter( 'woocommerce_product_tabs', 'woo_qty_pricing_tab' );

function woo_qty_pricing_tab( $tabs ) {

// Adds the qty pricing tab

$tabs['qty_pricing_tab'] = array(

'title' => __( 'Quantity Pricing', 'woocommerce' ),

'priority' => 110,

'callback' => 'woo_qty_pricing_tab_content'

);

return $tabs;

}

// ADD OTHER PRODUCTS TAB

add_filter( 'woocommerce_product_tabs', 'woo_other_products_tab' );

function woo_other_products_tab( $tabs ) {

// Adds the other products tab

$tabs['other_products_tab'] = array(

'title' => __( 'Other Products', 'woocommerce' ),

'priority' => 120,

'callback' => 'woo_other_products_tab_content'

);

return $tabs;

}

// ADD CUSTOM TAB DESCRIPTIONS

function woo_attrib_desc_tab_content() {

// The attribute description tab content

echo '

Description

';

echo '

Custom description tab.

';

}

function woo_qty_pricing_tab_content() {

// The qty pricing tab content

echo '

Quantity Pricing

';

echo '

Here\'s your quantity pricing tab.

';

}

function woo_other_products_tab_content() {

// The other products tab content

echo '

Other Products

';

echo '

Here\'s your other products tab.

';

}

編輯下面LoicTheAztec的回復,這是我的整個functions.php文件.我試過它有沒有?>在底部:

add_theme_support( 'builder-3.0' );

add_theme_support( 'builder-responsive' );

function register_my_fonts() {

wp_register_style('googleFonts-OpenSans', '//fonts.googleapis.com/css?family=Open+Sans:400,300,700');

wp_enqueue_style( 'googleFonts-OpenSans');

}

add_action('wp_enqueue_scripts', 'register_my_fonts');

function sc_replacecolon( $content ){ return str_replace( '[sc:', '[sc name=', $content ); }

add_filter( 'the_content', 'sc_replacecolon', 5 );

/* WOOCOMMERCE */

add_filter( 'woocommerce_product_tabs', 'woo_custom_product_tabs', 100, 1 );

function woo_custom_product_tabs( $tabs ) {

// 1) Removing tabs

unset( $tabs['description'] ); // Remove the description tab

// unset( $tabs['reviews'] ); // Remove the reviews tab

unset( $tabs['additional_information'] ); // Remove the additional information tab

// 2 Adding new tabs

//Attribute Description tab

$tabs['attrib_desc_tab'] = array(

'title' => __( 'Desc', 'woocommerce' ),

'priority' => 100,

'callback' => 'woo_attrib_desc_tab_content'

);

// Adds the qty pricing tab

$tabs['qty_pricing_tab'] = array(

'title' => __( 'Quantity Pricing', 'woocommerce' ),

'priority' => 110,

'callback' => 'woo_qty_pricing_tab_content'

);

// Adds the other products tab

$tabs['other_products_tab'] = array(

'title' => __( 'Other Products', 'woocommerce' ),

'priority' => 120,

'callback' => 'woo_other_products_tab_content'

);

return $tabs;

}

// New Tab contents

function woo_attrib_desc_tab_content() {

// The attribute description tab content

echo '

Description

';

echo '

Custom description tab.

';

}

function woo_qty_pricing_tab_content() {

// The qty pricing tab content

echo '

Quantity Pricing

';

echo '

Here\'s your quantity pricing tab.

';

}

function woo_other_products_tab_content() {

// The other products tab content

echo '

Other Products

';

echo '

Here\'s your other products tab.

';

}

?>

總結

以上是生活随笔為你收集整理的php将多个页面写在一个页面,php – 将多个标签添加到WooCommerce单个产品页面的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。