css フッター上ウィジェットの追加

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了css フッター上ウィジェットの追加相关的知识,希望对你有一定的参考价值。

///////////////////////////////////////
// フッター上ウィジェットの追加
///////////////////////////////////////
register_sidebars(1,
  array(
  'name'=>'フッター上',
  'id' => 'widget-top-footer',
  'description' => 'フッター上に表示されるウイジェット。',
  'before_widget' => '<div id="%1$s" class="widget-top-footer %2$s">',
  'after_widget' => '</div>',
  'before_title' => '<div class="widget-top-footer-title">',
  'after_title' => '</div>',
));

///////////////////////////////////////
// フッター上にウィジェットを追加する処理
///////////////////////////////////////
add_action( 'get_footer', function () {
  if ( is_active_sidebar( 'widget-top-footer' ) //ウィジェットが設定されているとき
  ) {
    //広告(AdSense)タグを記入
    ob_start();//バッファリング
    dynamic_sidebar( 'widget-top-footer' );//フッター上ウィジェットの表示
    echo ob_get_clean();
  }
});
/* フッター上ウィジェットのスタイル */
.widget-top-footer {
  text-align: center;
}

以上是关于css フッター上ウィジェットの追加的主要内容,如果未能解决你的问题,请参考以下文章

php WordPressのテキストウィジェットのauto paragraph机能を无效化

html Webサイトにつけるウィジェットをiframeで作る基本的な手顺ref:http://qiita.com/ikuwow/items/4343a252d1ff8b4e26a7

text フッターメニュー。ヘッダーメニュー

php ダッシュボード:フッター系

html LPのフッター

html 浮メニューをフッターまできたら固定する