Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the breadcrumb-navxt domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /home/websupportadmin/public_html/cms/wp-includes/functions.php on line 6114
WordPress保守・管理・運用サポートの専門サービス | Webサイト保守・サポートブログ

WordPress保守・管理・運用サポート

拡大中
WordPress開発コラム

WordPressテンプレートでホームとそれ以外を条件分岐する

WPでトップページだけ、あるいはホーム以外で表示したいときの条件分岐

ホーム(トップページ)とそれ以外のページを分岐して表示

<?php if(is_home() || is_front_page()): ?>
ここにトップページにだけ表示するコンテンツを記入
<?php else: ?>
ここにトップページ以外に表示するコンテンツを記入
<?php endif; ?>

Fatal error: Uncaught Error: Call to undefined function wp_related_posts() in /home/websupportadmin/public_html/cms/wp-content/themes/websupport/single.php:29 Stack trace: #0 /home/websupportadmin/public_html/cms/wp-includes/template-loader.php(106): include() #1 /home/websupportadmin/public_html/cms/wp-blog-header.php(19): require_once('/home/websuppor...') #2 /home/websupportadmin/public_html/index.php(17): require('/home/websuppor...') #3 {main} thrown in /home/websupportadmin/public_html/cms/wp-content/themes/websupport/single.php on line 29