Skip to content

Instantly share code, notes, and snippets.

@robbens
Last active April 18, 2017 12:37
Show Gist options
  • Save robbens/a1175c829314dc819ff4e4fd422506ae to your computer and use it in GitHub Desktop.
Save robbens/a1175c829314dc819ff4e4fd422506ae to your computer and use it in GitHub Desktop.
Small function to get the page set to work as blog in WordPress
<?php
/**
* Gets the blog page set in Settings > Reading.
*/
function rn_get_blog_page_url() {
if ('page' == get_option('show_on_front'))
return get_permalink(get_option('page_for_posts'));
return home_url();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment