gpt4 book ai didi

wordpress - 自定义帖子类型存档上的自定义字段

转载 作者:行者123 更新时间:2023-12-04 18:09:29 24 4
gpt4 key购买 nike

我遇到了以下问题。

我制作了 2 种自定义帖子类型,当然,每种类型都包含帖子。

但现在我遇到了需要在存档页面顶部添加自定义字段的情况。

因为我没有可以在管理端访问的页面,所以我无法填写这些自定义字段。

我应该切换到一个页面,还是有其他方式?

我希望这已经足够清楚了。

最佳答案

可能的方法是创建一个页面并将内容放在那里,然后在存档顶部使用以下代码“post-type”.php 来显示它。

$myposts = get_posts( array('post_type'=>'page','numberposts' => 1,'include' => 45) );
foreach( $myposts as $post ) : setup_postdata($post); ?>

<article id="post-<?php the_ID(); ?>" <?php post_class('grid_5'); ?>>
<header class="entry-header">
<h1 class="entry-title"><?php the_title(); ?></h1>
</header><!-- .entry-header -->
<div class="entry-content">
<?php the_content(); ?>
</div><!-- .entry-content -->
</article><!-- #post-<?php the_ID(); ?> -->
<?php endforeach; // end of the loop. ?>

您需要做的就是将“include”=> 45 替换为您自己的页面 ID。

关于wordpress - 自定义帖子类型存档上的自定义字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17992335/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com