gpt4 book ai didi

wordpress - 如何将 HTML 属性添加到行(WP Bakery Visual Composer)?

转载 作者:行者123 更新时间:2023-12-01 13:06:52 25 4
gpt4 key购买 nike

我正在尝试通过记录的函数 vc_add_param() 以这种方式将 ID 属性添加到 Visual Composer 中的行:

$attributes = array(
'type' => 'textfield',
'heading' => "HTML ID",
'param_name' => 'el_id',
'value' => '',
'description' => __( "Assign an ID to the row", "discprofile" )
);
vc_add_param( 'vc_row', $attributes );

当我编辑一行时会出现 ID 字段。我设置了一个值,保存它,保存页面,查看它,但对前端没有影响。一行仍然没有 ID 属性。

我也尝试过使用 'param_name' => 'id''param_name' => 'element_id',都是一样的。怎么了?

最佳答案

解决方法:

我们必须重新映射短代码并更改其模板以添加其他参数。

所以,就我而言:

// Add custom row options

function change_vc_rows() {

// Add parameters we want
vc_add_param('vc_row', array(
'type' => 'textfield',
'heading' => "HTML ID",
'param_name' => 'element_id',
'value' => '',
'description' => __("Assign an ID to the row", "discprofile")
));

// Update 'vc_row' to include custom vc_row template and remap shortcode
$new_map = vc_map_update( 'vc_row', array('html_template' => locate_template('templates/vc_row.php')) );

// Remove default vc_row
vc_remove_element('vc_row');

// Remap shortcode with custom template
vc_map($new_map['vc_row']);
}

// Include our function when all wordpress stuff is loaded
add_action( 'wp_loaded', 'change_vc_rows' );

我们包含了 templates/vc_rows.php 文件。它是行模板文件,从 plugins/js_composer/include/templates/shortcodes/vc_rows.php 复制而来并做了一些改动。在这里:

<?php
/** @var $this WPBakeryShortCode_VC_Row */
// $element_id was added to output
$output = $element_id = $el_class = $bg_image = $bg_color = $bg_image_repeat = $font_color = $padding = $margin_bottom = $css = $full_width = '';
extract( shortcode_atts( array(
// added element_id attribute
'element_id' => '',
'el_class' => '',
'bg_image' => '',
'bg_color' => '',
'bg_image_repeat' => '',
'font_color' => '',
'padding' => '',
'margin_bottom' => '',
'full_width' => false,
'css' => '',
), $atts ) );

// wp_enqueue_style( 'js_composer_front' );
wp_enqueue_script( 'wpb_composer_front_js' );
// wp_enqueue_style('js_composer_custom_css');

$el_class = $this->getExtraClass( $el_class );

$css_class = apply_filters( VC_SHORTCODE_CUSTOM_CSS_FILTER_TAG, 'vc_row wpb_row ' . ( $this->settings( 'base' ) === 'vc_row_inner' ? 'vc_inner ' : '' ) . get_row_css_class() . $el_class . vc_shortcode_custom_css_class( $css, ' ' ), $this->settings['base'], $atts );

$style = $this->buildStyle( $bg_image, $bg_color, $bg_image_repeat, $font_color, $padding, $margin_bottom );
?>

<!-- Added an ID attribute where we echo our $element_id variable -->
<div <?php
?>class="<?php echo esc_attr( $css_class ); ?><?php if ( $full_width == 'stretch_row_content_no_spaces' ): echo ' vc_row-no-padding'; endif; ?>" id="<?php echo $element_id; ?>" <?php if ( ! empty( $full_width ) ) {
echo ' data-vc-full-width="true"';
if ( $full_width == 'stretch_row_content' || $full_width == 'stretch_row_content_no_spaces' ) {
echo ' data-vc-stretch-content="true"';
}
} ?> <?php echo $style; ?>><?php
echo wpb_js_remove_wpautop( $content );
?></div><?php echo $this->endBlockComment( 'row' );
echo '<div class="vc_row-full-width"></div>';

关于wordpress - 如何将 HTML 属性添加到行(WP Bakery Visual Composer)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29215827/

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