エコーALT http://wpshower.com/themes/expositio/WordpressのPHP私はWPのテンプレートを使用して簡単なサイトを構築したテキスト
サイトです:Mathiaswarnich.dk
それは大丈夫だが、それは、代替テキストが表示されないと、私はPHPを理解することはできませんセットアップ。それは注目の画像であれば
* The template for displaying image attachments
// Retrieve attachment metadata.
$metadata = wp_get_attachment_metadata();
get_header();
?>
<section id="primary" class="content-area image-attachment">
<div id="content" class="site-content" role="main">
<header class="entry-header">
<?php the_title('<h1 class="entry-title">', '</h1>'); ?>
<div class="entry-meta">
<div class="full-size-link">
<a href="<?php echo wp_get_attachment_url(); ?>"><?php echo $metadata['width']; ?> × <?php echo $metadata['height']; ?></a>
</div>
<div class="parent-post-link">
<a href="<?php echo get_permalink($post->post_parent); ?>" rel="gallery"><?php echo get_the_title($post->post_parent); ?></a>
</div>
</div>
</header><!--
--><article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<div class="entry-content">
<div class="entry-attachment">
<div class="attachment">
<?php expositio_the_attached_image(); ?>
</div><!-- .attachment -->
<?php if (has_excerpt()) : ?>
<div class="entry-caption">
<?php the_excerpt(); ?>
</div><!-- .entry-caption -->
<?php endif; ?>
</div><!-- .entry-attachment -->
<?php
the_content();
wp_link_pages(array(
'before' => '<div class="page-links"><span class="page-links-title">'.__('Pages:', 'expositio').'</span>',
'after' => '</div>',
'link_before' => '<span>',
'link_after' => '</span>',
));
?>
altを印刷していますか? –
この関数 'expositio_the_attached_image();が定義されている場所を見つけて修正する必要があります(自分でできない場合はコードとファイル名を表示してください) – Kaddath
見つけたもの: \t function expositio_the_attached_image { \t \t $ post = get_post(); \t \t */ \t \t $ attachment_size = apply_filters( 'expositio_attachment_size'、array(810、810)); \t \t $ next_attachment_url = wp_get_attachment_url(); \t \t $ attachment_idsの=のget_posts(配列( \t \t \t 'post_parent' => $後> post_parent、 \t \t \t 'フィールド' => 'IDS' \t \t \t 'numberposts' => -1、 \t \t \t 'post_status' => '継承' \t \t \t 'post_type' => '添付' \t \t \t 'post_mime_type' => '画像'、 \t \t \t '注文' => 'ASC' \t \t \t 'ORDERBY' => 'menu_order ID' \t \t))。 –