3

我是 Wordpress / PHP 的新手。请你能建议我通过 Wordpress 在页面内显示图像的最佳方式吗?它们不必在管理员中进行编辑,但如果这样做更容易,则可以进行编辑。

目前我正在这样做;

<?php if (is_page(43)) { ?>
<img src="/images/notting-hill-4.jpg">
<img src="/images/notting-hill-5.jpg">

<?php } elseif (is_page(162)) {  ?>

<img src="/images/notting-hill-7.jpg">
<img src="/images/notting-hill-8.jpg">
<img src="/images/notting-hill-9.jpg">


<?php } else { ?>

<img src="/images/notting-hill-1.jpg">
<img src="/images/notting-hill-2.jpg">
<img src="/images/notting-hill-3.jpg">

<?php } ?>  
4

2 回答 2

0

例如,您可以使用 NextGen 画廊插件。在这里找到它:http ://wordpress.org/extend/plugins/nextgen-gallery/

为每个页面创建一个画廊。然后使用简码或提供的其他方式来显示您想要的图像。不要被图库功能所迷惑,它还可以让您显示单个图像(我非常确定,虽然我已经有一段时间没有使用它了。)

于 2012-10-13T23:56:54.583 回答
0

您可以使用不同的模板并在编辑器中设置模板,然后每个页面都有不同类型的模板

阅读更多: https ://codex.wordpress.org/Stepping_into_Templates

如果页面具有相同的模板,您可能只需将图像直接添加到帖子或页面编辑器中

于 2017-12-23T06:22:19.523 回答