如何向行添加HTML属性(WPBakery Visual Composer)?

时间:2015-03-23 16:51:42

标签: wordpress wordpress-plugin

我试图通过记录的函数vc_add_param()以这种方式向Visual Composer中的行添加ID属性:

$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',它也是一样的。有什么问题?

1 个答案:

答案 0 :(得分:8)

解决方案:

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

所以,就我而言:

// 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>';