groups

name language licence
Better more link PHP BSD
WORDPRESS SHORTCODE PHP BSD
WORDPRESS INCLUDE PAGE CONTENT PHP BSD
WORDPRESS EXCLUDE CAT FROM FRONTPAGE PHP BSD
Change The Default Wordpress Excerpt [...] PHP BSD
Wordpress Page Loop PHP BSD
Wordpress: Page With Content From Only A Particular Category PHP BSD
LOADING JAVASCRIPT LIBRARIES IN WORDPRESS GENERATED PAGE PHP BSD

< 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 >



language: PHP
licence: BSD

WORDPRESS SHORTCODE

options: view full snippetsend to code collector
function my_shortcode() {
return '<h2>This is my heading</h2>
<p>This is my text.</p>';
}
add_shortcode('short','my_shortcode');

	
(Continues...)