Horje
To enqueue css & js quickly Code Example
To enqueue css & js quickly
// js
#!/usr/bin/env php
<?php
foreach (glob('*.js') as $js) {
   echo "wp_enqueue_script('wptheme-{$js}', get_template_directory_uri() . '/js/{$js}', array('jquery'), '1.0', true);";
}

// Css
#!/usr/bin/env php
<?php
foreach (glob('*.css') as $css) {
   echo "wp_enqueue_style('wptheme-{$css}', get_template_directory_uri() . '/css/{$css}', null, '1.0');";
}




Php

Related
google api for language translation in php Code Example google api for language translation in php Code Example
check which device is used to open webpage php Code Example check which device is used to open webpage php Code Example
how to get many of quensation php programming language Code Example how to get many of quensation php programming language Code Example
php json_encode remove array index Code Example php json_encode remove array index Code Example
symfony request post Code Example symfony request post Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
8