在wordpress页面主题中插入img
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在wordpress页面主题中插入img相关的知识,希望对你有一定的参考价值。
Insert banner image in wordpress page theme
// the page is "About", or the parent of the page is "About" $bannerimg = '1'; } elseif ( is_pagearray(4)) ) { $bannerimg = '2'; } elseif ( is_page('home') ) { $bannerimg = '3'; } else { $bannerimg = '4'; } ?> <img src="<?php bloginfo('template_url'); ?>/images/image_<?php echo $bannerimg ?>.jpg" alt="<?php the_title(); ?>">
以上是关于在wordpress页面主题中插入img的主要内容,如果未能解决你的问题,请参考以下文章
在 Pagelines Pro Wordpress 主题中指定 <img> 的图像尺寸
PHP WordPress条件为主页SlideDeck主题代码片段