[vc_row full_width="stretch_row_content_no_spaces" wpex_bg_color="palette-88"][vc_column][vcex_grid_container][vcex_image image_id="976" fill_column="true" el_class="wpex-row-span-2" aspect_ratio="3/4"][vcex_image image_id="973"][vcex_image image_id="981"][vcex_image image_id="982"][vcex_image image_id="978"][/vcex_grid_container][/vc_column][/vc_row]
Shortcode to show current page title
function title_func($atts) {
extract( shortcode_atts( array(
'num_words' => 20,
), $atts ) );
//$title = get_the_title(get_the_ID());
$title = substr(get_the_title(), 0, $num_words );
$length = strlen(get_the_title());
if ($length > $num_words) {
$more = "…";
} else {
$more = "";
}
//$link = get_permalink(get_the_ID());
//return '<a href="' . $link . '">' . wp_trim_words($title, $num_words) . '</a>';
return $title . $more ;
}
add_shortcode('title','title_func');
