Search
 
SCRIPT & CODE EXAMPLE
 

PHP

enqueue font awesome wordpress

function enqueue_load_fa() {
  wp_enqueue_style( 'load-fa', 'https://use.fontawesome.com/releases/v5.5.0/css/all.css' );
}

add_action( 'wp_enqueue_scripts', 'enqueue_load_fa');
Comment

wordpress font awesome enque

// *** Latest version font awesome with bootstrapcdn ***
add_action( 'wp_enqueue_scripts', 'enqueue_load_fa' );
function enqueue_load_fa() {
wp_enqueue_style( 'load-fa', 'https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css' );
}
Comment

PREVIOUS NEXT
Code Example
Php :: wordpress change site address 
Php :: blade loop last 
Php :: guzzle bearer token 
Php :: laravel hash::check 
Php :: get upload error codeigniter 
Php :: check if text exists in string php 
Php :: wordpress if admin 
Php :: set nav link active on the basis of route laravel 
Php :: php round down 
Php :: reset wp query 
Php :: 500 server error laravel 
Php :: api headers php 
Php :: php remove parentheses and contents from string 
Php :: laravel test assert redirecto to 
Php :: get a cookie in php 
Php :: laravel validation time hours minutes format 
Php :: laravel blade if variable exist 
Php :: how get file size in laravel 
Php :: how to check if username already exists in php 
Php :: laravel get last record 
Php :: laravel get random row 
Php :: check if number is float in php 
Php :: how to use bootstrap in laravel 8 remove tailwind 
Php :: get yesterday date in php 
Php :: sql row count php pdo 
Php :: wordpress thumbnail url 
Php :: php get time in milliseconds 
Php :: php utf 8 sqlsrv 
Php :: php put file in ftp server 
Php :: header location php 
ADD CONTENT
Topic
Content
Source link
Name
5+1 =