previous_posts_link()
andnext_posts_link()
関数によって生成されたリンクに id 属性を追加する方法を知りたいです。このコードでクラスを追加できることがわかりました:
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"';
}
しかし、id
属性をどうするか?