如果你的目标是在每篇文章的顶部都有一张照片,我鼓励你使用特色图片。它可以添加到任何帖子类型add_theme_support()
:
// add featured image to Page post type
add_theme_support( \'post-thumbnails\', array( \'page\' ) );
然后,用户可以将图像上载到“特色图像”字段,您可以在内容之前的模板中显示该图像:
// ... the loop and stuff ...
the_post_thumbnail();
the_content;
// ... more stuff, close the loop, etc.
the_post_thumbnail()
获取其他参数,这些参数允许您设置所需的大小以及其他图像属性。只要我愿意
standardize 图像输入,这是我最喜欢的方式。
如果您需要多个图像,请添加一个自定义元框或查看图像元框附带的一个插件,如高级自定义字段或类型。然后,您可以允许上传更多图像,并根据自己的喜好创建模板。
最后一种选择是让人们将照片上传到页面上以便附加,然后在之前立即粘贴一个图库the_content
像这样:
// ... the loop and stuff ...
do_shortcode( \'[gallery]\' );
the_content;
// ... more stuff, close the loop, etc.