Can't update old posts 3.5.2

时间:2013-07-26 作者:Bellisia

Background: 我在一个客户网站上工作,我还没有自己建立。该网站运行得很好,当我得到它时,wp\\u页眉和wp\\u页脚丢失了,javascript文件在body标记关闭之前都链接到了。

WordPress 3.5.2

Issue: 旧帖子和打印更新内容时存在此问题。内容打印在foreach中,其中应显示一篇文章的附加图像。由于某种原因,旧内容被困在那里。我可以更新帖子,查看帖子的内容,但我无法在我试图显示的特定位置看到新内容。

foreach生成一个滚动div,该div随图像前后移动。

I\'ve tried: 修复数据库,禁用所有插件,更新WordPress和所有插件。

I don\'t have: 访问以编辑数据库。

如果可能的话,我会非常感谢您的帮助。几乎一整天都在寻找解决方案。

Code:

$bottomSliderImages = get_posts(
    array(
         \'numberposts\' => -1,
         \'post_parent\' => 54,     
         \'post_status\' => \'inherit\',
         \'post_type\' => \'attachment\',
         \'post_mime_type\' => \'image\',
         \'order\' => \'ASC\',
         \'orderby\' => \'menu_order ID\'
    )   
);

<?php foreach($bottomSliderImages as $img): ?>
<?php $thumb = wp_get_attachment_image_src($img->ID, \'200,94\'); 
      if ($img->post_excerpt): ?>
      <a target="_blank" href="<?php echo $img->post_excerpt; ?>"><?php endif; ?>
      <img src="<?php echo $thumb[0]; ?>" alt="<?php echo $img->post_title; ?>" />
<?php if ($img->post_excerpt): ?></a><?php endif; ?>
<?php endforeach; ?>

1 个回复
最合适的回答,由SO网友:Tolea Bivol 整理而成

所以$img->post_excerpt 是您的内容。它是附件的标题字段。你必须用id更改贴在帖子上的图片标题54 为了看到任何变化,如果我对这个问题理解正确的话。

添加:同时将图像附加到帖子。

结束

相关推荐

如何更改NEXT_POSTS_LINK()返回的URL?

我正在将WordPress博客集成到我现有的公文包test中。我的网站。com。测试时会出现WordPress默认的二十一博客。我的网站。com/blog/。我想将WordPress功能集成到我现有的公文包中,所以我在测试时创建了一个页面。我的网站。com/blog。php。我刚刚在博客页面中添加了下一页/上一页功能。My problem is that the next_posts_link() function does not return the correct URL. 使用我的公文包布局的博客