Last active
November 9, 2015 12:28
-
-
Save erezLieberman/5920853b919bdf19a20b to your computer and use it in GitHub Desktop.
add wp shortcode code apper in place
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function shortcode_function_name() { | |
ob_start(); | |
// Code | |
...youre php/html code | |
$content = ob_get_clean(); | |
return $content; | |
} | |
add_shortcode( 'shortcode_name', 'shortcode_function_name' ); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment