在每个帖子中的特定文本之后添加特定内容

时间:2015-03-03 作者:mhktricks.net

假设我想在我的所有postsEg中添加一些图像。我想添加以下内容:<img src="ad.png" >在此文本之后

仅此而已

每个帖子

&;不同类别的图像应该不同。

1 个回复
SO网友:Little Phild

我想你应该使用post缩略图

在您的功能中。php文件
此函数将允许您在每个要添加am图像的帖子上添加图像

//And post featured images
 function add_featured_image(){
    add_theme_support(\'post-thumbnails\');
}
add_action("after_setup_theme", "add_featured_image");
在函数中添加该函数后。php,现在您可以访问管理仪表板中的功能。只需创建一个图像帖子enter image description here

现在你可以在每一篇文章中插入你的图像。

但在你的帖子中插入特色图片后,它不会立即显示在你的页面中,你需要在索引中做什么。php或您使用的任何页面名称。

<?php if(have_posts()):
?>
 <?php 
  while(have_posts()):the_post(); ?>
       <a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
      <?php
         the_post_thumbnail();
         $words = implode(\' \', array_slice(explode(\' \', get_the_title()), 0, 3));
         if(get_the_title() == $words){
          the_title();
         }else{
          echo $words."...";
         }
         ?>
<?php endwhile; ?>
<?php 
else:
  _e(\'Sorry, no book has been posted yet!\');
endif; ?>
此功能将帮助您查看图像。无论你想在哪里看到它。

结束

相关推荐

如何使用另一个文件而不是home.php

我有一个优雅的地产主题,我正在使用多个类别选择来显示一些帖子,结果页面在顶部显示功能幻灯片,我想消除这种情况;我希望它能像Wordpress Search显示结果一样工作(不带功能滑块)。我发现多类别插件正在使用get_bloginfo(\'url\'), 主页,以显示结果。所以我想创建另一个home.php, 但没有滑块;homesearch.php, 但是我如何才能调用此页而不是home.php This 是页面