[ create a new paste ] login | about

Link: http://codepad.org/zh5rnphw    [ raw code | output | fork ]

PHP, pasted on Oct 21:
1
2
3
4
5
6
7
8
add_shortcode("alignleft", "alignleft_div_tag");
function alignleft_div_tag(){
        return('<div style="text-align:left;">');                            
}
add_shortcode("divend", "div_end_tag");
function div_end_tag(){
        return('</div>');                            
}


Output:
1
2
3
4
5
6
7
8
add_shortcode("alignleft", "alignleft_div_tag");
function alignleft_div_tag(){
        return('<div style="text-align:left;">');                            
}
add_shortcode("divend", "div_end_tag");
function div_end_tag(){
        return('</div>');                            
}


Create a new paste based on this one


Comments: