ちゃんと覚えておけよ?

忘れちゃいけない事のメモ、覚え書き

WordPressのget_next_posts_linkと、get_previous_posts_linkにaccesskeyをつける方法

WordPressのget_next_posts_linkと、get_previous_posts_linkにaccesskeyをつける方法

番号の割り当てはaccesskey=”○○”の部分を変えればOK

//前後の記事のリンクにaccesskeyを追加
function add_prev_posts_link_attr(){
 return 'accesskey="4"';
}
add_filter('previous_posts_link_attributes', 'add_prev_posts_link_attr');
function add_next_posts_link_attr(){
 return 'accesskey="6"';
}
add_filter('next_posts_link_attributes', 'add_next_posts_link_attr');

Comment

*