Thank you.
What if I want to set it on a page not on sidebar? In what file should I type the following code (in order for shortcode to work, and considering I’m using child theme)
<?php
if ( function_exists( ‘wptelegram_widget’ ) ) {
$args = array(
// ‘num_messages’ => 5,
// ‘widget_width’ => 100,
// ‘author_photo’ => ‘auto’,
);
wptelegram_widget( $args );
}
?>
Thanks again