Header Ads Widget

Thay đổi phiên bản version css wordpress

 Thay đổi phiên bản mặc định ver= khi cập nhật hoặc thêm mới thuộc tính ở file style.css của theme

Cài đặt

Thêm đoạn code bên dưới vào file: functions.php của thư mục theme


define('_S_VERSION', 1);

function themename_scripts() {

    wp_enqueue_style( 'themename-style', get_stylesheet_uri(), array(), _S_VERSION );

    wp_style_add_data( 'themename-style', 'rtl', 'replace' );


    wp_enqueue_script( 'themename-navigation', get_template_directory_uri() . '/js/navigation.js', array(), _S_VERSION, true );


    if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) {

        wp_enqueue_script( 'comment-reply' );

    }

}

add_action( 'wp_enqueue_scripts', 'themename_scripts' );

wp_enqueue_style( 'themename-style', get_stylesheet_uri(), array(), _S_VERSION );


Nhận xét