Client of mine wanted to be able to set Biography to formatted text, preferably using editor (TinyMCE). So I made this super simple plugin for that task. It utilizes wp_editor API so it needs WP version to be at least 3.3. m_biography_editor.zip
I use mplayerx for watching my video files and I really like the possibility to skip to the next or previous episode. I’m not sure how it works, but I believe it takes the actual filename, divides into prefix, number and suffix and then searches…
wp_update_user wipes out user’s custom meta data. I just wanted to change first_name, last_name and email of user and as I have found out I should’ve used update_user_meta instead. Hopefully I saved you some time (took me few hours…)
███████everything████████████████████████████████████ is██████████████████████████████████████████fine██████████████. #SOPA
This plugin shows an image on the front of your wordpress home page. After clicking on the image, it disappears. Feel free to improve and/or use it. http://dunik.sk/m_home_show_image.zip
do you need to quickly download codex’s Function Reference? I’ve written this super-simple script: wget -O Function_Reference.html http://codex.wordpress.org/Function_Reference cat Function_Reference.html |sed -n ‘/href=”\/Func/p’ |sed -e ‘s/^.*href=”\/Function_Reference\/\([a-zA-Z0-9_]*\)”.*$/\1/g’ > pages sed -i ‘s:href=”/Function_Reference/:href=”Function_Reference/:g’ Function_Reference.html mkdir Function_Reference for i in `cat pages` do wget -O Function_Reference/$i “http://codex.wordpress.org/Function_Reference/$i” done…
I’m using custom post type. While testing I realized I wanted comments enabled and they were not. So nothing’s easier, just added ‘comments’ to the support array ‘supports’ => array( ‘title’, ‘editor’, ‘thumbnail’, ‘custom-fields’, ‘comments’), refreshed my site with a test entry and WHAT? comments…