如何在param Visual Composer中使用fontawesome?

问题描述 投票:0回答:1

我使用视觉编辑器编写元素代码。我想在 element 中使用 FortAwesome。

此处的代码在

param
视觉作曲家中显示 FortAwesome 列表

array(
   'type' => 'iconpicker',
   'heading'    => esc_html__('Fontawesome', 'interior'),
   'param_name' => 'fontawesome_icon',
   'settings'   => array(
      'type' => 'fontawesome'
    ),
    'description' => esc_html__( 'Fontawesome list. Pickup your choice.', 'interior'
   ),
   'dependency'  => array(
   'element' => 'icon_type',
   'value'   => array( 'fontawesome-icon' )
)

我在元素中显示了列表图标,但我选择了它不保存,而且我不知道获取值 font-awsome 显示 html。

php wordpress font-awesome visual-composer
1个回答
0
投票

我只为 Font Awesome Icon 制作了一个代码...你可以试试这个 下面的代码。它已经过测试并且绝对有效。在这里我用过 标题中的“Facebook”...如果您发现任何问题,请通过评论告诉我 在代码中或对此有任何麻烦。

<?php

if ( ! defined( 'ABSPATH' ) ) exit;

if( !class_exists( 'RN_FA_Icon_list' ) ) {

    class RN_FA_Icon_list {

        private $shortcode;

        function __construct() {

            /* shortcode base */
            $this->shortcode = 'rn_fa_icon_list';

            add_action( 'init', array( $this, 'rn_map_shortcode' ) );
            add_shortcode( $this->shortcode, array( $this, 'rn_create_shortcode' ) );   

        }

        function rn_map_shortcode( $atts, $content = NULL ) {

            if( function_exists( 'vc_map' ) ) {

                vc_map(
                    array(
                        'name'            => esc_html__( 'Font Awesome Icon', 'rn_shortcodes' ),
                        //'icon'            => RN_SHORTCODES_URL . '/admin/img/vc_icons/fancy-list.png',
                        'base'            => $this->shortcode,
                        'category'        => 'Structual',
                        'class'           => 'rn-vc-icon-module rn-structual-module',
                        'content_element' => true,
                        'params'          => array(

                            array(
                                'type'              => 'textfield',
                                'heading'           => esc_html__( 'Description', 'rn_shortcodes' ),
                                'description'       => esc_html__( 'Only for internal use. This adds a label to Visual Composer for an easier element identification.', 'rn_shortcodes' ),
                                'param_name'        => 'list_description',
                                'admin_label'       => true,
                                'group'             => 'General'
                            ),
                            array(
                                'type' => 'iconpicker',
                                'heading' => __( 'Icon', 'js_composer' ),
                                'param_name' => 'icon_fontawesome',
                                'value' => 'fa fa-adjust',
                                'group' => 'General',
                                'settings' => array(
                                    'emptyIcon' => false,
                                    'type' => 'fontawesome',
                                    'iconsPerPage' => 4000,
                                ),
                                'dependency' => array(
                                    'element' => 'type',
                                    'value' => 'fontawesome',
                                ),
                                'description' => __( 'Select icon from library.', 'js_composer' ),
                            ),
                            array(
                                'type'          => 'css_editor',
                                'param_name'    => 'css',
                                'group'         => esc_html__( 'Design Options', 'rn_shortcodes' ),
                            ),



                        )                        

                    )

                ); /* end mapping */

            } 

        }

        function rn_create_shortcode( $atts, $content = NULL ) {

            extract( shortcode_atts( array (
                'icon_fontawesome'  => '',
                'css'              => ''
            ), $atts ) ); 


            /* extract list items */
            if( function_exists('vc_param_group_parse_atts') && !empty( $values ) ) {

                $values = vc_param_group_parse_atts( $values );    

            }

            /* unique listz ID */
            $id = uniqid("rn_fa_");

            $output = '';

                $output .= '<div id="' . esc_attr( $id ) . '">';

                                $output .= '<a href="#"><i class="' . $icon_fontawesome . '"></i> Facebook</a>';                               
                $output .= '</div>';


            return '<div class="wpb_content_element ' . apply_filters( VC_SHORTCODE_CUSTOM_CSS_FILTER_TAG, vc_shortcode_custom_css_class( $css, ' ' ), $this->shortcode, $atts ) . '">' . $output . '</div>'; 

        }

    }

}

new RN_FA_Icon_list;        
?>
© www.soinside.com 2019 - 2024. All rights reserved.