Display shortcode separately, any possibilities : Project zoeken: GEZOCHTE PROJECTEN
see detailsMonth: May 2020
single shortcode
single
use and show any shortcode – PRO feature
For use any shortcode in markers and list you can create custom tag. eg for shortcode ‘gallery’ add to functions.php this code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
Locate_And_Filter_Addon_Helper::define_custom_tags( array( 'custom_shortcode_filed' =>'custom_shortcode_filed_notes'), 'all', 'getDataCallbackFn_custom_shortcode_filed_notes', 'custom_shortcode_filed' ); function getDataCallbackFn_custom_shortcode_filed_notes( $field, $id){ $html = ''; ob_start(); echo do_shortcode( "[notes]" ); $html .= ob_get_contents(); ob_end_clean(); return $html; } add_shortcode( 'notes', 'notes_func' ); function notes_func( $atts ){ $html = ''; ob_start(); ?> <h2>Custom Shortcode - Notes</h2> <?php $html .= ob_get_contents(); ob_end_clean(); return $html; } |
demo template
see details