functions.phpに追加
if (function_exists('register_sidebar')) { register_sidebar(array( 'name' => '広告メインブロック-上',//ダッシュボードでの表示名です。 'id' => 'pr_top', 'description' => '', 'before_widget' => '<div class="pr_top">',//好きなクラスを設定してください。 'after_widget' => '</div>', 'before_title' => '<h3>', 'after_title' => '</h3>' )); }
表示したいテンプレートに追加
<?php dynamic_sidebar( 'pr_top' ); ?>