Forum Replies Created

Viewing 1 replies (of 1 total)
  • Thread Starter ofeknakar

    (@ofeknakar)

    <?php

    function sans_files() {

    ? ?wp_enqueue_script(‘main-js’,get_theme_file_uri(‘/js/scripts-bundled.js’), NULL, ‘1.0’, true);

    ? ?
    wp_enqueue_style(‘custom-google’,’//fonts.googleapis.com/css?family=Roboto+Condensed:300,300i,400,400i,700,700i|Roboto:100,300,400,400i,700,700i’);
    wp_enqueue_style(‘font-awesome’,’//maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css’);
    ?wp_enqueue_style( “style”, get_stylesheet_uri(‘/style.css’));

    }
    add_action(‘wp_enqueue_style’,’sans_files’);
    add_action(‘wp_enqueue_scripts’,’sans_files’);

    ?>

    this is the code in functions.php

Viewing 1 replies (of 1 total)