给wordpress网站的图片加alt标签

给wordpress网站的图片加alt标签的几种方法,在实际应用中可以根据自己的需求,调用最适合自己的。

直接输出文章标题(和原来一样,仅作占位,无特殊处理)

复制代码
alt="<?php echo esc_attr( get_the_title() ); ?>"

取"图片本身的替代文本"(上传媒体时填的那个"替代文本"字段)

复制代码
alt="<?php
$thumb_id = get_post_thumbnail_id( $post->ID );
echo $thumb_id ? esc_attr( get_post_meta( $thumb_id, '_wp_attachment_image_alt', true ) ) : esc_attr( get_the_title() );
?>"

取"图片标题"(上传媒体时填的那个"标题"字段)

复制代码
alt="<?php
$thumb_id = get_post_thumbnail_id( $post->ID );
echo $thumb_id ? esc_attr( get_the_title( $thumb_id ) ) : esc_attr( get_the_title() );
?>"

取"图片说明(caption)"

复制代码
alt="<?php
$thumb_id = get_post_thumbnail_id( $post->ID );
echo $thumb_id ? esc_attr( wp_get_attachment_caption( $thumb_id ) ) : esc_attr( get_the_title() );
?>"

原文

http://wordpress.zj.cn/jiaocheng/59.html

相关推荐
VIP_CQCRE3 天前
用 Ace Data Cloud 自动发布 WordPress 文章:把 SEO 内容站变成长期增长资产
ai·自动化·seo·wordpress·acedatacloud
2601_965798477 天前
Renovate Theme Setup: Fast Contractor & Construction Site Architecture
theme·wordpress
2601_965798479 天前
Salient Theme Setup Guide for Fast Creative WordPress Sites
数据库·web3·php·wordpress
2601_9657984711 天前
Boutique Business Consulting WordPress Architecture & SEO Setup
android·theme·wordpress
2601_9657984712 天前
Plastic Surgery Clinic Web Setup: Deploying Rejuvita WordPress
php·theme·wordpress
2601_9657984712 天前
Contractor Web Setup: Deploying Bathrooms & Kitchens Theme Fast
前端·web3·php·wordpress
e6zzseo19 天前
wordpress独立站seo怎么做才有效
seo·wordpress·独立站·内容优化·外链建设
Web极客码21 天前
如何让用户订阅WordPress评论?提升用户互动的有效策略
运维·服务器·wordpress
fobwebs21 天前
Wordpress Xstore 主题安装Elementor Pro 后找不到某些Elements 组件的解决方法
element·wordpress·form·xstore·pro elements·elementor pro
代龙涛22 天前
WordPress sidebar.php 侧边栏开发教程
开发语言·php·wordpress