Post Tags menjadi Meta Keywords WordPress
Setiap artikel post biasanya disertai dengan tags. Para menulis akan menyertakan tags agar mudah mengkategorikan jenis artikel dan menjadikannya sebagai keywords bagi tulisan tersebut. Dengan adanya tags tersebut diharapkan setiap artikel atau tulisan dapat...
Min.X WordPress Themes
Themes kali ini diberi nama min.X
Keunggulannya adalah ini simple, clean, responsive design! Load faster? it depend on your internet connections. lol
Themes ini masih terus dalam tahap development, terkadang masih sering saya utak utik codenya,...
Multisites CodeIgniter – Multi Configuration
Melanjutkan postingan mengenai membuat modular pada CodeIgniter kemaren,
Sekarang bertemakan membuat codeigniter menjadi multisites atau bisa disebut dengan multi konfigurasi. Sebelumnya mari mengerti multisites dahulu. Tujuan multisites disini adalah untuk membuat beberapa client/subdomain menggunakan configurasi...
Setting Up HMVC in CodeIgniter 2.1.2
This article about how to setup Hierarchical Model-View-Controller (HMVC) on CodeIgniter 2.1.2. Here we go the step how to seting up on CodeIgniter 2.1 :
Download wiredesignz HMVC zip file from bitbucket.org.
Extract the files from the zip.
Move all of the...
Google Maps 3D Demo on Mobile
For detail please see my video below, This demo on my HTC phone, with ICS Android.
Thanks,!
MySQL strip_tags
Berikut adalah salah satu fungsi yang dapat digunakan untuk untuk melakukan strip_tags pada query MySQL.
DELIMITER ||
DROP FUNCTION IF EXISTS strip_tags||
CREATE FUNCTION strip_tags( X LONGTEXT) RETURNS LONGTEXT
LANGUAGE SQL NOT DETERMINISTIC READS SQL DATA
BEGIN
DECLARE sstart INT...
Argo UML (Open source UML Modeling)
Apa itu Argo UML ? apa kelebihannya sih ? Tutorialnya ada ga ?
How to resize images from the command line
How to resize images from the command line on linux (Ubuntu) using imagemagick.
Install imagemagick :
sudo apt-get install imagemagick
Create a directory in the location named “resized-pictures” as follows :
$ mkdir resized-pictures
Now run the mogrify command from...
Limit character textarea using Jquery
Here we can do, copy this jquery plugins :
jQuery.fn.maxLength = function(max){
this.each(function(){
//Get the type of the matched element
var type = this.tagName.toLowerCase();
//If the type property exists, save it in lower case
var inputType = this.type? this.type.toLowerCase() :...
Code To Change Hyperlink Underline Color
Here we can do to change hyperlink underline color
<a href="change-underline-color.php" style="text-decoration: none; border-bottom: 1px solid #999999">change underline color</a>
TinyMCE produce P elements
This is way If you want to change new line in TinyMCE with <br/> character :
For the display you can use a simple CSS trick like this on file tiny_mce/themes/advanced/skin/default/content.css :
p {margin:0; padding: 0;}.
See...
Jquery Check All
Here we can do with jquery, check all checkbox with name parameters :
sample code :
function checkallitems(){
var arr=$("input']");
if($('#contestall').attr('checked')==true){
for(var i=0;i<arr.length;i++){
$(arr).attr('checked','checked');
}
}else{
for(var i=0;i<arr.length;i++){
$(arr).attr('checked',false);
}
}
}
note :
contest is the name of checkbox will be checked.
contestall is a checkbox for control check...