924efdfe by Jeff Balicki

short

Signed-off-by: Jeff <jeff@gotenzing.com>
1 parent 6e554108
......@@ -42,4 +42,30 @@ function advance_search($atts){
function add_linebreak_shortcode() {
return '<br />';
}
add_shortcode('br', 'add_linebreak_shortcode' );
\ No newline at end of file
add_shortcode('br', 'add_linebreak_shortcode' );
add_shortcode('list_media', 'list_media');
function list_media($atts){
ob_start();
$args = array( 'posts_per_page' => -1, 'post_type' => 'attachment');
$pages = get_posts( $args );
foreach ( $pages as $page ){
$exclude_from_search = get_post_meta($page->ID, 'exclude_from_search', true);
if($exclude_from_search == '0'){ ?>
<a href='<?php echo get_permalink($page->ID);?>' >
<?= get_the_title($page->ID) ?>
</a><br><br>
<?php }
}
wp_reset_query();
$output = ob_get_clean();
return $output;
}
\ No newline at end of file
......