Skip to content

Instantly share code, notes, and snippets.

@tanjilahmed7
Last active January 2, 2020 09:23
Show Gist options
  • Select an option

  • Save tanjilahmed7/eba7ca36ede483f34c29 to your computer and use it in GitHub Desktop.

Select an option

Save tanjilahmed7/eba7ca36ede483f34c29 to your computer and use it in GitHub Desktop.
Shortcode API
<?php
/*
Shortcode Making By: Tanjil Ahmed
PurpleIT
*/
//Shortcode
function box($atts, $content = null) {
ob_start();
?>
<div class="boxed_style">
<a href="http://purpleit.com.bd/">PurpleIT</a>
</div>
<img src="http://placehold.it/350x150" alt="">
<?php
$file_content = ob_get_clean();
return $file_content;
}
?>
Display Shows.
[your_funtions_name][/your_funtions_name]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment