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
カスタムフィールドにisbnを登録し、参考文献 を表示させる – コンピュータ学

rgb-green.net

カスタムフィールドにisbnを登録し、参考文献 を表示させる

固定ページのカスタムフィールドにisbnを登録することで書籍を表示させる。
次のコードをpage-sitemap.phpとpage-database.phpのtemplateに書き込む。
 [サンプルページ] page-sitemap.phpの例 page-database.phpの例
[php]
<?php // 参考文献 の表示 ?>
<?php if(post_custom(‘isbn’)): ?>
<h6>参考文献</h6>
<div id="book_info">
<ul>
<?php
$list = get_post_custom();
$isbns = $list[‘isbn’];
foreach ($isbns as $isbn) {
_SESSION["isbn"]=$isbn;
get_template_part(‘content-amazon’);
}
?>
</ul>
</div><!– end #book_info –>
<?php endif; ?>
[/php]


© 2023

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