gpt4 book ai didi

php - 在 "created by"框中为每个产品和优惠券等添加 "post_submitbox_misc_actions"

转载 作者:行者123 更新时间:2023-12-04 08:17:13 25 4
gpt4 key购买 nike

我能够编写一个运行良好的代码!我只是有一些问题,如果这段代码质量很好,或者我是否可以做得更好。
我们想在后台的每个产品编辑页面和优惠券等上显示“创建者”。为此,我编写了下面的代码。基础知识来自How to add a field in edit post page inside Publish box in Wordpress?Add a new column with author name to WooCommerce admin coupon list
这段代码完全有效!
但我不确定它是否是干净的代码并想学习。

add_action( 'post_submitbox_misc_actions', 'created_by' );

function created_by($post)
{
// Author ID
$author_id = get_post_field ( 'post_author', $post_id );

// Display name
$display_name = get_the_author_meta( 'display_name' , $author_id );

if ( ! empty ( $display_name ) ) {
echo '<div class="misc-pub-section misc-pub-section-last">
<span id="timestamp"><label><b>Created by: </b></label>' . $display_name .'</span></div>';
}
}

最佳答案

变量 $post_id未定义,应替换为“$post->ID”。还有 <strong>替换旧的 <b> html 标签和“创建者:”标签应该是可翻译的。
所以在你的代码中:

add_action( 'post_submitbox_misc_actions', 'created_by' );

function created_by( $post )
{
// Get Author ID
$author_id = get_post_field ( 'post_author', $post->ID );

// Get Author Display name
$display_name = get_the_author_meta( 'display_name' , $author_id );

if ( ! empty ( $display_name ) ) {
echo '<div class="misc-pub-section misc-pub-section-last">
<span id="timestamp"><label><strong>' . __("Created by:", "woocommerce").' </strong></label>' . $display_name .'</span>
</div>';
}
}
它应该更好地工作。

添加:要仅定位产品和优惠券,您还应该添加一些条件,例如:
add_action( 'post_submitbox_misc_actions', 'created_by' );

function created_by( $post )
{
global $typenow;

if ( in_array( $typenow, array('product', 'shop_coupon') ) )
{
// Get Author ID
$author_id = get_post_field ( 'post_author', $post->ID );

// Get Author Display name
$display_name = get_the_author_meta( 'display_name' , $author_id );

if ( ! empty ( $display_name ) ) {
echo '<div class="misc-pub-section misc-pub-section-last">
<span id="timestamp"><label><strong>' . __("Created by:", "woocommerce").' </strong></label>' . $display_name .'</span>
</div>';
}
}
}

关于php - 在 "created by"框中为每个产品和优惠券等添加 "post_submitbox_misc_actions",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65656912/

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