duan19780629 2013-10-01 11:14
浏览 42
已采纳

Wordpress中的意外数字wp_get_attachment_thumb_url

I am trying to print url of the thumbnail out side the wordpress directory, the url works but the problem is I am always getting a number before that url.

This is the code I am playing with,

<?php require($_SERVER['DOCUMENT_ROOT'] . '/personal/wordpress/wp-load.php'); query_posts('showposts=1');  if (have_posts()) : while (have_posts()) : the_post(); ?>

<?php echo wp_get_attachment_thumb_url( get_post_thumbnail_id( the_id() ) )?>

<?php endwhile; else: echo "no posts"; endif; ?>

This is the output:

5http://localhost/personal/wordpress/wp-content/uploads/2013/10/facebookhero-150x150.jpg

I have already tried string replace, like this str_replace(the_id(),"", wp_get_attachment_thumb_url( get_post_thumbnail_id( the_id() )) but it does not work, in fact when I have tried:

 <?php echo "|".wp_get_attachment_thumb_url( get_post_thumbnail_id( the_id() ) )?>

Most interestingly this is what I get:

5|http://localhost/personal/wordpress/wp-content/uploads/2013/10/facebookhero-150x150.jpg
  • 写回答

1条回答 默认 最新

  • dongzuo4666 2013-10-01 11:36
    关注

    It works fine:

    simplexml_load_string(get_the_post_thumbnail())->attributes()->src
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?

悬赏问题

  • ¥15 一部手机能否同时用不同的app进入不同的直播间?
  • ¥15 没输出运行不了什么问题
  • ¥20 输入import torch显示Intel MKL FATAL ERROR,系统驱动1%,: Cannot load mkl_intel_thread.dll.
  • ¥15 点云密度大则包围盒小
  • ¥15 nginx使用nfs进行服务器的数据共享
  • ¥15 C#i编程中so-ir-192编码的字符集转码UTF8问题
  • ¥15 51嵌入式入门按键小项目
  • ¥30 海外项目,如何降低Google Map接口费用?
  • ¥15 fluentmeshing
  • ¥15 手机/平板的浏览器里如何实现类似荧光笔的效果
手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部