Skip to content

Instantly share code, notes, and snippets.

@phucdohong96
phucdohong96 / Function.php
Last active November 30, 2017 09:07
Example Create Shortcode WordPress
<?php
function custom_loop_function( $atts ) {
ob_start();
$opts = shortcode_atts( array(
'type' => 'post_type_option',
), $atts );
$output = '';
$args = array(
'post_type' => $opts['type'],
'posts_per_page' => '10',