test
// Add Shortcode function custom_shortcode() { // Add Shortcode function custom_shortcode() { $bedrooms = get_field('bedrooms'); if( $bedrooms ) { return '<p>Number of bedrooms: ' . $bedrooms . '</p>'; } } add_shortcode( 'bedrooms', 'custom_shortcode' ); } add_shortcode( '', 'custom_shortcode' );