Помогите сделать миниатюру ссылкой на пост
-
Здравствуйте. Пробовал вставлять в код
<a href="<?php the_permalink() ?>">
, миниатюру кликается но переходит не на пост, а выводит ошибку:
Forbidden
You don’t have permission to access /< on this server.
Additionally, a 403 Forbidden error was encountered while trying to use an ErrorDocument to handle the request.Код где нужно это реализовать.
<?php /** * The template for displaying posts in the cwp_gallery post format. * * @package metro-creativex */ ?> <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> <?php $metro_creativex_posttitle = get_the_title(); $metro_creativex_feat_image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'single-post-thumbnail' ); if(isset($metro_creativex_feat_image[0])): echo '<div class="img"> <img src='.$metro_creativex_feat_image[0].' alt="'.$metro_creativex_posttitle.'"> </div>'; endif; ?> <div class="post_icon" style="background-image:url(<?php echo get_template_directory_uri(); ?>/images/pt_gallery.png);"></div> <div class="post_content"> <a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a> </div><!--/post_content--> </article>
Просмотр 2 ответов — с 1 по 2 (всего 2)
Просмотр 2 ответов — с 1 по 2 (всего 2)
- Тема «Помогите сделать миниатюру ссылкой на пост» закрыта для новых ответов.