11/30/2017 at 11:04 am
#442473
Participant
heres my line 150
/**
* Callback for the `cn_template_customizer_template` filter which sets the template used on the directory home
* page to the template being customized.
*
* @see cnShortcode_Connections::shortcode()
*
* @access private
* @since 8.4
*
* @param array $atts
*
* @return array
*/
public function getTemplate( $atts ) {
$atts['template'] = $this->slug;
return $atts;
}
/**