web-dev-qa-db-ja.com

Wordpress-特定のウィジェットを表示

少し迷ってしまいました。

動的フッターサイダーバーがあるとします。これまでは簡単です。

<footer>
    <?php get_sidebar("name") ?>  
</footer>

フッターに入れます。

しかし、ここにいます。グリッド内に各ウィジェットが必要です:

      <footer>
         <div style="width: 100px:">
            <div style="width: 25%">First widget here</div>
            <div style="width: 25%">Second widget here<</div>
            <div style="width: 25%">Third widget here<</div>
            <div style="width: 25%">Fourth widget here<</div>
          </div>
        </footer>

したがって、get_sidebarはすべてのウィジェットを連続して表示するため、現在はオプションではありません。そして、ウィジェット自体を編集したくありません。

彼らはそれをテーマでどのようにしていますか?

ありがとう。

21
fomicz

これには 'the_widget'関数を使用できます。

<?php the_widget($widget, $instance, $args); ?>

詳細については、 Wordpress Codex-The_Widgetリファレンス を参照してください。

20
Rhapsody

これも良いリファレンスです- Function Reference/dynamic sidebar"WordPress Codex

そのページでメソッドを使用する場合:

<ul id="sidebar">
 <?php if ( !dynamic_sidebar() ) : ?>
    <li>{static sidebar item 1}</li>
    <li>{static sidebar item 2}</li>
 <?php endif; ?>
 </ul>

次に、CSSスタイルを使用して、サイドバーウィジェットをフッター全体に配置できます。

以下を含むように編集...

ArrasテーマCSS:

#footer             { margin: 20px auto 0; width: 980px; background: #ECEBE6; padding-bottom: 10px; border: 1px solid #CCC; }
#footer .widgetcontainer    { padding: 5px 10px; min-width: 150px; }
.no-js #footer .widgetcontainer { height: 190px; }
#footer .widgettitle    { background: none; border: none; font-size: 14px; color: #444; padding: 0 0 10px; letter-spacing: -1px; }
#footer .widgetcontent  { font-size: 12px; background: none; padding: 0; border: none; }
#footer .footer-message { margin: 0; padding: 10px 15px 0; font-size: 11px; }
#footer .footer-message p { margin: 0 0 0.5em; }
#footer .footer-message .floatright { margin-left: 20px; }
#footer-sidebar     { overflow: hidden; margin: 10px 10px 0; padding: 0 0 10px; border-bottom: 1px solid #CCC; }
#footer-sidebar .widgetcontainer    { float: left; margin: 0; max-width: 250px; }
#footer-sidebar ul  { list-style: none; margin: 0; padding: 0; }
#footer-sidebar li  { margin: 0 0 3px; }

フッターのコーディング:

<ul id="footer-sidebar" class="clearfix xoxo">
        <?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('Footer') ) : ?>
        <li></li>
    <?php endif; ?>
</ul>

テーマでは、ページ全体にウィジェットを配置します。

2
Vince Pettit

特定のウィジェットを表示する私の新しいプラグインをチェックアウトしてください。

訪問: http://wordpress.org/extend/plugins/widget-instance/

0
Globalz

または、次のように使用することもできます。

<?php dynamic_sidebar( 'sidebar-1' ); ?>   
0
Mahesh Budeti

ウィジェットオプションプラグインを使用して、ページやデバイスでのウィジェットの表示を制限または制御できます。リポジトリで無料で利用できます: https://wordpress.org/plugins/widget-options/ 。または、widget_display_callbackhttps://developer.wordpress.org/reference/hooks/widget_display_callback/ 。これがお役に立てば幸いです。

function custom_display_callback( $instance, $widget, $args ){
    if( is_page() ){
        return false;
    }
    return $instance;
}
add_filter( 'widget_display_callback', 'custom_display_callback', 50, 3 );

enter image description here

0