Questions tagged «captions»

3
使Wordpress图片标题具有响应性
该网页包含Wordpress插入的图像。用于插入第一个图像的代码是: [caption id="attachment_887" align="alignnone" width="604"] <a href="http://steven.doig.com.au/files/2013/06/Forest_Legacy_m.jpg"> <img class="size-large wp-image-887" alt="a Forest Legacy group" src="http://steven.doig.com.au/files/2013/06/Forest_Legacy_m-1024x681.jpg" width="1024" height="681" /> </a> a Forest Legacy group[/caption] 此图像由CSS控制: #content .wp-caption a img { width: 614px; height: auto; } 我想使该图像响应。我插入了CSS: @media (max-width:988px) { #content .wp-caption a img { width: 99.03225806%; /* 614/620 */ height: auto; …

1
获取图像描述
我正在尝试将帖子分为2列。第一个和左边的将是帖子内的任何图像,第二个和右边的将是the_content()(不包括图像)。 因此,到目前为止,我可以轻松提取所有图像。但是-我似乎无法获得图像标题,标题或描述。 这是我的代码: <?php if ( $images = get_posts(array( 'post_parent' => $post->ID, 'post_type' => 'attachment', 'numberposts' => -1, 'orderby' => 'title', 'order' => 'ASC', 'post_mime_type' => 'image', ))) { foreach( $images as $image ) { $attachmenturl = wp_get_attachment_url($image->ID); $attachmentimage = wp_get_attachment_image_src( $image->ID, full ); $imageDescription = apply_filters( 'the_description' , $image->post_content …
10 images  captions 

1
多用户站点和图像标题
在多用户站点上,当作者从媒体库中选择图像时,他们可以选择其他作者上载的图像。 问题是他们可以编辑标题,并且可以为正在制作的帖子以及具有相同图像和标题的任何以前的帖子更改标题,这没有任何意义。 有没有办法阻止作者从其他作者上传的用户图像中解决图像标题问题?
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.