I have a few, but it is not an issue and i dont think a link is necessary simple because theres nothing wrong with the plugin.
I use genesis and by default the elements rel=”next” and rel=”prev” is disabled on home page, the navigation links 1,2,3…50 gets no rel=”next” and rel=”prev”.
The class-frontend.php? has this function:
public function adjacent_rel_links() {
// Don't do this for Genesis, as the way Genesis handles homepage functionality is different and causes issues sometimes.
if ( is_home() && function_exists( 'genesis' ) && apply_filters( 'wpseo_genesis_force_adjacent_rel_home', false ) === false )
return;
But the plugin has a filter, which is: wpseo_genesis_force_adjacent_rel_home that may be used to enable the markup also in the homepage.
Added wpseo_genesis_force_adjacent_rel_home filter to allow forcing of rel=next / rel=prev links on the homepage pagination for Genesis users, they’re off by default.
I just would lie to know how to make it work.
I could just comment that line out of the class-frontend.php? but every time i update the plugin i would need to do again, so the use of the filter should be a best use.
Anyone can please help me out on this?