如何解决WordPress的图像路径,如何编辑?
| 我在找出图像变量的路径时遇到了一个小问题。 这是发生了什么。这是图片标签:<img src=\"http://www.xxx.info/wp-content/uploads/http://ecx.images-amazon.com/images/I/51AV8B7CT2L._SL160_.jpg\" class=\"attachment-135x135 wp-post-image\" alt=\"Clean & Sober\" title=\"Clean & Sober\">
没有ѭ1like,这就是我想要的样子:
<img src=\"http://ecx.images-amazon.com/images/I/51AV8B7CT2L._SL160_.jpg\" class=\"attachment-135x135 wp-post-image\" alt=\"Clean & Sober\" title=\"Clean & Sober\">
这是wordpress代码:
<?PHP $thumb = \'\';
$width = 135;
$height = 135;
$classtext = \'\';
$titletext = get_the_title();
$thumbnail = get_thumbnail($width,$height,$classtext,$titletext,false,\'Entry\');
$thumb = $thumbnail[\"thumb\"]; ?>
<?PHP print_thumbnail($thumb,$thumbnail[\"use_timthumb\"],$width,$classtext); ?>
更多相关功能:
/* this function prints thumbnail from Post Thumbnail or Custom field or First post image */
function print_thumbnail($thumbnail = \'\',$use_timthumb = true,$alttext = \'\',$width = 100,$height = 100,$class = \'\',$echoout = true,$forstyle = false,$resize = true,$post=\'\') {
if ( $post == \'\' ) global $post;
$output = \'\';
$thumbnail_orig = $thumbnail;
$thumbnail = et_multisite_thumbnail($thumbnail);
$cropPosition = get_post_meta($post->ID,\'etcrop\',true) ? get_post_meta($post->ID,true) : \'\';
if ($cropPosition <> \'\') $cropPosition = \'&a=\' . $cropPosition;
if ($forstyle === false) {
if ($use_timthumb === false) {
$output = $thumbnail_orig;
} else {
$output = \'<img src=\"\'.get_bloginfo(\'template_directory\').\'/timthumb.PHP?src=\'.$thumbnail.\'&h=\'. $height .\'&w=\'. $width .\'&zc=1&q=90\'.$cropPosition.\'\"\';
if ($class <> \'\') $output .= \" class=\'$class\' \";
$output .= \" alt=\'$alttext\' width=\'$width\' height=\'$height\' />\";
if (!$resize) $output = $thumbnail;
}
} else {
$output = $thumbnail;
if ($use_timthumb === false) {
$output = preg_match_all(\'/<img.+src=[\\\'\"]([^\\\'\"]+)[\\\'\"].*>/i\',$output,$matches);
$output = $matches[1][0];
} else {
$output = get_bloginfo(\'template_directory\').\'/timthumb.PHP?src=\'.$output.\'&h=\'.$height.\'&w=\'.$width.\'&q=90&zc=1\'.$cropPosition;
}
}
if ($echoout) echo $output;
else return $output;
}
这就是我在图像标签中返还$output = $thumbnail_orig;
的结果。
我知道ѭ1应该有一个变量
另一个是http://ecx.images-amazon.com/images/I/51AV8B7CT2L._SL160_.jpg
我想删除网站路径到uploads
。
我似乎无法弄清楚,
感谢所有帮助,
谢谢
解决方法
我可能错了或者误解了这个问题,但是我认为在WP中设置路径就像在管理面板中的设置下编辑路径一样简单,不是吗?
直流电
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。