An easy developer snippet for themes In this example, I’m passing the Stylesheet Directory Uri (ref: wordpress) so the php function’s output is accessible in scripts.js. You can pass other variables to the vars object by adding more ‘key’ => ‘value’ pairs to the $variables_array. functions.php file $variables_array = array( ‘templateUrl’ => get_stylesheet_directory_uri() ); wp_enqueue_script(‘my-theme-script’,… Read more »
Posts Categorized: Wordpress
Link Scripts and Css the right way in your WordPress Theme
Want to add your custom script or css to your theme? Just add this snippet into your functions.php file in the theme folder:
Displaying Posts with a custom event date using Flutter
When I first heard about flutter at the Birmingham Wordcamp I was excited. The project I was working on called for some custom fields, and I didn’t want the clients to worry if they typed a date in correctly. Flutter can add a simple date selector when creating a post. Since my knowledge of php programming… Read more »