WordPress tema dosyalarına manual shortcode eklemek

Bazı pluginlerin yazı içerisinde kullanmamıza izin verdiği shortcode’ ları manual olarak temanın herhangi bir yerinde göstermek istediğimizde aşağıdaki kodu kullanabiliriz.

  <?php echo do_shortcode( $content ) ?> 

Örneğin;

 <?php echo do_shortcode( "[AFG_gallery id='2']" ); ?>

Değişik bir yöntem olarak aşağıdaki kod kullanılabilir;

<?php  $content = apply_filters('the_content', '<!--subscribe2-->'); echo $content; ?>