-
-
Save billerickson/6c473848209efda1bfa725d4c2330860 to your computer and use it in GitHub Desktop.
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 | |
/** | |
* Template Parts with Display Posts Shortcode | |
* @author Bill Erickson | |
* @see https://www.billerickson.net/template-parts-with-display-posts-shortcode | |
* | |
* @param string $output, current output of post | |
* @param array $original_atts, original attributes passed to shortcode | |
* @return string $output | |
*/ | |
function be_dps_template_part( $output, $original_atts ) { | |
// Return early if our "layout" attribute is not specified | |
if( empty( $original_atts['layout'] ) ) | |
return $output; | |
ob_start(); | |
get_template_part( 'partials/dps', $original_atts['layout'] ); | |
$new_output = ob_get_clean(); | |
if( !empty( $new_output ) ) | |
$output = $new_output; | |
return $output; | |
} | |
add_action( 'display_posts_shortcode_output', 'be_dps_template_part', 10, 2 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment