我正在尝试启用图像功能以在帖子的图库中显示。
我试图通过上传图片,选择我需要的图片并将它们放入帖子中,在 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,我也会得到图库,但是我的用户无法像他们希望的那样制作图库,并且必须自己手动编辑模板文件,而且他们对编码一无所知。
犯罪嫌疑人X