gpt4 book ai didi

php - 在 WooCommerce 存档页面上获取和显示产品自定义字段

转载 作者:行者123 更新时间:2023-12-04 08:47:26 27 4
gpt4 key购买 nike

我已成功将自定义 Metabox 添加到管理产品页面。上面的代码在 Admin-Area 中生成一个 Input 类型的文本,我可以在其中插入城市名称:

add_action( 'save_post_product', 'set_post_metas_city', 10, 3 );
function set_post_metas_city( $post_id, $post, $update ) {
if(isset($_POST['city']))
update_post_meta($post_id, 'city', esc_attr($_POST['city']));
}

add_action( 'add_meta_boxes', 'metas_boxes_city', 50 );
function metas_boxes_city(){
add_meta_box( "options-city", "City Name", 'edit_form_after_title_cidade', 'product', 'normal' );
}

function edit_form_after_title_city($post) { ?>
<div id="mdiv">
<input type="text" style="width: 100%" name="city" value="<?php echo($post ? get_post_meta($post->ID,'city',true) : ''); ?>" id="city" spellcheck="true" autocomplete="off" placeholder="<?php _e('Insert the city'); ?>">
</div>
<?php
}
代码在事件主题的 functions.php 文件中。
现在我使用下面的钩子(Hook)函数,尝试在 Shop Page 上显示自定义字段值(城市名称)如下:
// define the woocommerce_after_shop_loop_item callback 

function action_woocommerce_after_shop_loop_item( ) {

// make action magic happen here...

echo($post ? get_post_meta($post->ID,'city',true) : '');

};

// add the action
add_action( 'woocommerce_after_shop_loop_item', 'action_woocommerce_after_shop_loop_item', 10, 0 );
所以我试图得到类似的东西:
[Product Picture]
**City**
Category
Cake Ananas
$4,00
[BUY BUTTON]
但它仍然没有显示任何内容。
如果我在 echo 中使用静态内容,我会在商店页面上获得所需的显示:
// define the woocommerce_after_shop_loop_item callback 
function action_woocommerce_after_shop_loop_item( ) {
// make action magic happen here...
echo "Statictest";
};
但是缺少正确的变量..
另一点是,在这种情况下,我不知道在哪个页面运行该操作。
// run the action
do_action( 'woocommerce_after_shop_loop_item' );
请问我做错了什么?有人可以帮忙吗?

最佳答案

主要问题在于您的最后一个函数 $post->ID .自 WooCommerce 3 以来,还有一个比 save_post_product 更好的钩子(Hook)。 .请尝试以下重新访问的代码:

// Add custom product meta box
add_action( 'add_meta_boxes', 'add_product_metas_box_city', 50 );
function add_product_metas_box_city(){
add_meta_box( "options-city", __("City Name"), 'product_metas_box_city_content_callback', 'product', 'normal', 'high' );
}

// custom product meta box
function product_metas_box_city_content_callback( $post ) {
$value = get_post_meta( $post->ID, 'city', true );

echo '<div id="mdiv">
<input type="text" style="width: 100%" name="city" value="'. $value .'" id="city" spellcheck="true" autocomplete="off" placeholder="'. __('Insert the city') .'">
</div>';
}

// Save city custom field value
add_action( 'woocommerce_admin_process_product_object', 'save_product_city_meta_value' );
function save_product_city_meta_value( $product ) {
if( isset($_POST['city']) ) {
$product->update_meta_data( 'city', sanitize_text_field( $_POST['city'] ) );
}
}

// Display city value on frontend products loop
add_action( 'woocommerce_after_shop_loop_item', 'action_woocommerce_after_shop_loop_item', 10, 0 );
function action_woocommerce_after_shop_loop_item() {
global $product;

$city = $product->get_meta('city');

if ( $city ) {
echo '<p class="city">'. $city .'</p>';
}
}
代码在您的事件子主题(或事件主题)的functions.php 文件中。测试和工作。

关于php - 在 WooCommerce 存档页面上获取和显示产品自定义字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64245841/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com