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 /var/www/wordpress/wp-includes/functions.php on line 6114
サイドバーに最新の記事を投稿順に表示させるコード – コンピュータ学

rgb-green.net

サイドバーに最新の記事を投稿順に表示させるコード

サイドバーに「各サイトへのリンク(最新の記事投稿順)」の作成コード

[php]
<?php /* 各サイトへのリンク */?>
<div id="site-link">
<h2>各サイトへのリンク(最新の記事投稿順)</h2>
<ol>
<?php $sites=get_last_updated(); ?>
<?php foreach($sites as $site) : ?>
<?php if($site[‘blog_id’]!=1) : ?>
<li><a href="<?php echo get_home_url($site[‘blog_id’]); ?>"><?php echo get_blog_option($site[‘blog_id’],’blogname’); ?></a></li>
<?php endif; ?>
<?php endforeach; ?>
</ol>
</div><!– end of #site-link –>
[/php]


© 2023

© 2023 Study of Reason, Inc. All rights reserved.