add_action( 'wpml_hide_management_column', 'the_callback_function', 10, 2 );
- النوع
- filter
- الفئة
- متفرقات
- إصدار WPML
- 3.4.1
الوصف
- يتيح إخفاء عمود إدارة الترجمة بناءً على نوع المقالة.
- يعمل هذا المرشِّح بالتزامن مع خيارات الشاشة. لذلك، سيكون لإخفاء العمود من خيارات الشاشة التأثير نفسه.
الوسطاء
يتم تمرير مُعَلمتين إلى هذا الإجراء:- $is_visible
- (bool) ما إذا كان عمود إدارة الترجمة سيُعرض أم لا.
- $post_type
- (string) نوع المقالة.
يجب أن يُرجع هذا المرشِّح قيمة bool لـ $is_visible.
مثال على الاستخدام
مثال
add_filter( 'wpml_hide_management_column', array( $this, 'my_filter_function' ), 10, 2 );
/**
* Hide management column by default for products.
*
*/
function my_filter_function( $is_visible, $post_type ) {
if ( 'product' === $post_type ) {
$is_visible = false;
}
return $is_visible;
}
خطاطيف ذات صلة
icl_ls_languages, wpml_sync_custom_field_copied_value, wpml_ls_enable_ajax_navigation, wpml_element_type, wpml_setting, wpml_sub_setting, wpml_exclude_post_from_auto_translate, wpml_forms_config_ninja-forms, wpml_forms_config_wpforms, wpml_tf_feedback_open_link