Automattic\WooCommerce\Admin\Features\ProductBlockEditor
Init::update_edit_product_link()
Update the edit product links when the new experience is enabled.
Метод класса: Init{}
Хуков нет.
Возвращает
Строку
.
Использование
$Init = new Init(); $Init->update_edit_product_link( $link, $post_id );
- $link(строка) (обязательный)
- The edit link.
- $post_id(int) (обязательный)
- Post ID.
Код Init::update_edit_product_link() Init::update edit product link WC 9.7.1
public function update_edit_product_link( $link, $post_id ) { $product = wc_get_product( $post_id ); if ( ! $product ) { return $link; } if ( $product->get_type() === ProductType::SIMPLE ) { return admin_url( 'admin.php?page=wc-admin&path=/product/' . $product->get_id() ); } return $link; }