我正在使用wc-供应商专业插件,使供应商处理产品的一个简单的 Jmeter 板-产品可以添加,编辑和删除。但要求是:点击编辑它应该去WP管理员产品发布和编辑相同的产品。
我有这个过滤器来改变网址,但我不知道如何获得相同的产品ID?任何帮助?
add_filter( 'wcv_product_edit_link', 'link_actions_edit', 10, 3);
function link_actions_edit($template_url, $product_id) {
$template_url = '/wp-admin/post.php?php='. $product_id.'&action=edit';
return $template_url;
}
这是插件代码。
/**
* Get the product edit link depending on several different variables
*
* @since 1.4.0
* @access public
* @return array $product_edit_link
*/
public static function get_product_edit_link( $product_id = null, $default = false ){
$default_template = get_option( 'wcvendors_product_form_template' );
$default_template = 'edit' === $default_template ? 'standard' : $default_template;
$default_link = ( 'standard' === $default_template ) ? 'product/edit/' : 'product/' . $default_template . '/edit/';
// Only load a custom template if the product has one
if ( $product_id ){
$template = get_post_meta( $product_id, '_wcv_product_form_template', true );
$template = $template === 'edit' || $template === 'standard' ? '' : $template;
if ( !empty( $template ) ) $template = $template . '/';
}
if ( $default ) $template = $default_link;
$template_url = ( empty( $template ) ) ? $default_link : 'product/' . $template . 'edit/';
return apply_filters( 'wcv_product_edit_link', WCVendors_Pro_Dashboard::get_dashboard_page_url( $template_url . $product_id ) );
}
2条答案
按热度按时间jmp7cifd1#
您可以在过滤函数中传递错误的参数。
2guxujil2#
$拆分删除产品图片=(分解(',',$删除产品图片));