在wordpress页面主题中插入img

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在wordpress页面主题中插入img相关的知识,希望对你有一定的参考价值。

Insert banner image in wordpress page theme
  1. <?php if ( is_page(array(1,2,3)) ) {
  2. // the page is "About", or the parent of the page is "About"
  3. $bannerimg = '1';
  4.  
  5. } elseif ( is_pagearray(4)) ) {
  6. $bannerimg = '2';
  7.  
  8. } elseif ( is_page('home') ) {
  9. $bannerimg = '3';
  10.  
  11. } else {
  12. $bannerimg = '4';
  13. } ?>
  14.  
  15. <img src="<?php bloginfo('template_url'); ?>/images/image_<?php echo $bannerimg ?>.jpg" alt="<?php the_title(); ?>">

以上是关于在wordpress页面主题中插入img的主要内容,如果未能解决你的问题,请参考以下文章

如何在WORDPRESS首页插入一段自定义代码?

在 Pagelines Pro Wordpress 主题中指定 <img> 的图像尺寸

PHP WordPress条件为主页SlideDeck主题代码片段

在 wordpress 主题中插入 javascript 背景

访问下划线主题中的非wordpress php文件

如何在wordpress主题中添加设置页面