I’ve a custom widget for ads, it helps me to show ads on sidebar but I’m trying to display it under every single post or on front page near to slider.
<?php the_widget( 'AdWidget_300' ); ?>
How could I call custom widget anywhere I want?
I’ve a custom widget for ads, it helps me to show ads on sidebar but I’m trying to display it under every single post or on front page near to slider.
<?php the_widget( 'AdWidget_300' ); ?>
How could I call custom widget anywhere I want?
Add a widget area to your single.php
, front-page.php
, home.php
or whatever you want.. template’s theme file. Than at the back-end go to Appearance > Widgets and move the widget to the widget area you just created.