You are here: Home » Archives for: Themes

Tag Archives: Themes

[themes] A new look for Techotronic

I have updated the official Techotronic theme, .

It is now a childtheme of the Thematic framework, it was built from scratch the last time.

Currently, I have no plans of releasing the new theme to the public, as it is not finished.

Posted in Magenta, Themes, WordPress | Also tagged , , | Leave a comment

[How To] Load Javascript in WordPress

If your or theme uses , it is essential to know how to include it so that you don’t break other libraries or plugins/ that use .

The straight forward way to load JavaScript is of course to embed a script tag with the JS file as a src attribute:

<script src="my-plugin/js/.js"></script>

Of course you can load your own custom JavaScript that way, but don’t do that if you are loading a JavaScript library! Check the list of JavaScript libraries supplied by WordPress. Do not include a library with your theme/plugin if WordPress already brings it along!!!

WordPress offers a nice and easy way to load JavaScript libraries, the wp_enqueue_script() function. If you are including a JavaScript file that depends on e.g. jQuery, you can just tell WordPress and it will load jQuery for you!

Example from my jQuery Colorbox plugin:

wp_enqueue_script('colorbox', plugins_url('js/jquery.colorbox-min.js', __FILE__), array('jquery'), '1.3.6');

I tell WordPress to load the Colorbox JavaScript library that depends on jQuery. WordPress makes sure that the jQuery library is loaded before my JavaScript is loaded so everything will work as expected.

(links)
wp_enqueue_script description @ WordPress
JavaScript libraries supplied by WordPress

Posted in Development, JavaScript, WordPress | Also tagged , , , , , | Leave a comment

[themes] Magenta 1.3 fertig gestellt

Habe eben Version 1.3 vom Theme fertig gestellt.

Weitere Informationen gibt es hier.

Posted in Magenta, Themes, WordPress | Also tagged , , | Leave a comment

[themes] Magenta 1.2.1 fertig

Heute habe ich Version 1.2.1 des fertig gestellt.

Weitere Informationen gibt es hier.

Posted in Magenta, Themes, WordPress | Also tagged , , | Leave a comment

[themes] Techotronic jetzt live mit Magenta 1.2

An der Oberflaeche sieht man nicht sooo viel, aber unter der Haube hat sich viel getan.

1.2 ist fertig und jetzt hier und auf MyWpThemes zu bewundern. Bald mehr dazu hier auf dem Blog.

(links)
MyWpThemes

Posted in Themes | Also tagged , | Leave a comment