Dodaj klasę do linków generowanych przez next_posts_link i previous_posts_link - CSS-Tricks

Anonim

Te dwie funkcje tworzą linki zakotwiczenia i możesz dostosować wiele z nich, ale nie można dodać klasy za pomocą samych ich parametrów. Muszę dodać funkcję do functions.php:

add_filter('next_posts_link_attributes', 'posts_link_attributes'); add_filter('previous_posts_link_attributes', 'posts_link_attributes'); function posts_link_attributes() ( return 'class="styled-button"'; )