Hola !
estoy usando wordpres Veinte Veintiuno Tema que modifiqué. El hecho es que quiero que se pueda hacer clic en los artículos, no solo en el título y en el botón «Ver el resto…».
Sé que tengo que editar content-single.php porque definí mi página de inicio como los últimos artículos:
<a href="<?php the_permalink() ?>">
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<header class="entry-header alignwide">
<?php the_title( '<h1 class="entry-title">', '</h1>' ); ?>
<?php twenty_twenty_one_post_thumbnail(); ?>
</header><!-- .entry-header -->
<div class="entry-content">
<?php
the_content();
wp_link_pages(
array(
'before' => '<nav class="page-links" aria-label="' . esc_attr__( 'Page', 'twentytwentyone' ) . '">',
'after' => '</nav>',
/* translators: %: Page number. */
'pagelink' => esc_html__( 'Page %', 'twentytwentyone' ),
)
);
?>
</div><!-- .entry-content -->
<footer class="entry-footer default-max-width">
<?php twenty_twenty_one_entry_meta_footer(); ?>
</footer><!-- .entry-footer -->
<?php if ( ! is_singular( 'attachment' ) ) : ?>
<?php get_template_part( 'template-parts/post/author-bio' ); ?>
<?php endif; ?>
</article>
</a>
Pero el <a href="<?php the_permalink() ?>">
No funciona…
Cómo puedo hacer eso ? Ya no estoy acostumbrado a PHP ^^’
Gracias de antemano !
.