我正在尝试启用图像功能以在帖子的图库中显示。我试图通过上传图片,选择我需要的图片并将它们放入帖子中,在 wordpress 中以“正常”方式制作图库。$post_id = 83;$queried_post = get_post($post_id);$title = $queried_post->post_title; ?><div id="gallery" class="section-top"> <h1 class="section-heading"> <?php echo $title; ?></h1> <p class="center-find"><?php echo $queried_post->post_content;?></p></div>我需要能够在网站上展示画廊。当我使用我检查过的随机图片库中的短代码时,我可以看到帖子中的图片,但是当我在front-page.php.如果我将帖子作为“查看帖子”打开,则会显示图库,因此我想我的代码中缺少某些内容来获取首页上的图像。如果我直接在 中使用短代码front-page.php,我也会得到图库,但是我的用户无法像他们希望的那样制作图库,并且必须自己手动编辑模板文件,而且他们对编码一无所知。
1 回答
犯罪嫌疑人X
TA贡献2080条经验 获得超4个赞
如果您希望它通过短代码,您应该对帖子内容应用过滤器。您可能还想使用 get_the_title 而不是 post 对象。
$post_id = 83;
$queried_post = get_post($post_id);
$content = apply_filters( 'the_content', $queried_post->post_content );
$title = get_the_title($post_id);
<div id="gallery" class="section-top">
<h1 class="section-heading"> <?php echo $title; ?></h1>
<p class="center-find"><?php echo $content; ?></p>
</div>
- 1 回答
- 0 关注
- 132 浏览
添加回答
举报
0/150
提交
取消