如何将帖子缩略图标题和alt属性更改为帖子标题?

时间:2012-03-27 作者:Pierre

我们可以更改\\u post\\u缩略图的title和alt属性并将其设置为post title吗?比如为它创建一个函数并添加一个过滤器?我试着搜索,但似乎找不到我想要的东西。

提前谢谢你。

2 个回复
最合适的回答,由SO网友:Rajeev Vyas 整理而成

看看这个http://codex.wordpress.org/Function_Reference/the_post_thumbnail

此函数的第二个参数可以设置几个集合字段,例如alt、title、source和class:

$default_attr = array(
        \'src\'   => $src,
        \'class\' => "attachment-$size",
        \'alt\'   => trim(strip_tags( wp_postmeta->_wp_attachment_image_alt )),
        \'title\' => trim(strip_tags( $attachment->post_title )),
    );

SO网友:Rameez SOOMRO

try this

$title_attribute = the_title_attribute( array( \'echo\' => FALSE ) );
the_post_thumbnail(
    \'full\', 
    array(
        \'alt\'   => $title_attribute, 
        \'title\' => $title_attribute 
    )
);
结束

相关推荐

Functions file mods and CPU

将添加类似于我在下面粘贴到函数的代码。php主题文件会降低Wordpress站点的速度,还是影响CPU?(谢谢)function remove_menu_items() { global $menu; $restricted = array(__(\'Links\'), __(\'Comments\'), __(\'Media\'), __(\'Plugins\'), __(\'Tools\'), __(\'Users\')); end ($menu);&#