サイドバーをウィジェット化。
<ul>~</ul>間に以下の記述を追記。
<?php if ( !function_exists(‘dynamic_sidebar’)
|| !dynamic_sidebar() ) : ?>
(中略)
<?php endif; ?>
また、functions.phpを作成し
<?php
if ( function_exists(‘register_sidebar’) )
register_sidebar();
?>
と記述。
<ul>~</ul>間に以下の記述を追記。
<?php if ( !function_exists(‘dynamic_sidebar’)
|| !dynamic_sidebar() ) : ?>
(中略)
<?php endif; ?>
また、functions.phpを作成し
<?php
if ( function_exists(‘register_sidebar’) )
register_sidebar();
?>
と記述。
コメント/トラックバック
トラックバック用URL:
この記事のコメント・トラックバックRSS
コメントする