Skip to content

Instantly share code, notes, and snippets.

@raselahmed7
raselahmed7 / custom-post-loop-with-pagination-shortcode.php
Last active September 7, 2022 16:23
Custom post loop with pagination in shortcode
<?php
function portfolios_shortcode($atts){
extract( shortcode_atts( array(
'expand' => '',
), $atts) );
global $paged;
$posts_per_page = 6;
$settings = array(