woespressでfooterやsideにWidgetを表示させる

記事内に広告が含まれていることがあります

woespressをあれこれカスタマイズしている備忘記録。

★footerにWidgetを表示させる

《functions.php》

<?php
if(function_exists (‘register_sidebar’))
{
register_sidebars(6, array (
‘before_widget’ => ‘<div id=”%1$s” class=”widget %2$s”>’,
‘after_widget’ => ‘</div>’,
‘before_title’ => ‘<h3>’,
‘after_title’ => ‘</h3>’,
));
}

《footer.php》

<div id=”widget”>

<ul class=”footerwidget”>
<?php if ( !function_exists(‘dynamic_sidebar’) || !dynamic_sidebar(3) ) : ?>
<?php endif; ?>
</ul>

<ul class=”footerwidget”>
<?php if ( !function_exists(‘dynamic_sidebar’) || !dynamic_sidebar(4) ) : ?>
<?php endif; ?>
</ul>

<ul class=”footerwidget”>
<?php if ( !function_exists(‘dynamic_sidebar’) || !dynamic_sidebar(5) ) : ?>
<?php endif; ?>
</ul>

<ul class=”footerwidget”>
<?php if ( !function_exists(‘dynamic_sidebar’) || !dynamic_sidebar(6) ) : ?>
<?php endif; ?>
</ul>
</div>

これをcssでfooterwidgetをカスタマイズ配置してOK!

wordpress便利~

コメント