How do you get the link to the blog url when using a static home page? Something like: get_bloginfo(‘blog’) but that is not in the cards… thanks.
cramdesign said
How do you get the link to the blog url when using a static home page? Something like: get_bloginfo(‘blog’) but that is not in the cards… thanks.
<?php echo bloginfo('url'); ?>/blog/
http://codex.wordpress.org/Function_Reference/bloginfo
-Scott
iKreativ said
<?php echo bloginfo('url'); ?>/blog/
That only works if you name your blog page “blog”. How do you get it dynamically?
Hard to believe that there isn’t a code for this. Best I can find so far is:
if( get_option('show_on_front') == 'page') {
$posts_page_id = get_option( 'page_for_posts' );
$posts_page = get_page( $posts_page_id );
$posts_page_title = $posts_page->post_title;
$posts_page_url = get_bloginfo('url') . '/' . get_page_uri( $posts_page_id );
}
else $posts_page_title = $posts_page_url = '';
It seems that there should be a better way.
- Sold between 250 000 and 1 000 000 dollars
- Community Moderator
- Author was Featured
- Item was Featured
- Bought between 50 and 99 items
- Referred between 1000 and 1999 users
- Has been a member for 3-4 years
- Repeatedly Helped protect Envato Marketplaces against copyright violations
How about just
<?php echo get_permalink( get_option( 'page_for_posts' ) ); ?>
sevenspark said
<?php echo get_permalink( get_option( 'page_for_posts' ) ); ?>
Well that seems easy now. Perfect. Thanks!
- Sold between 250 000 and 1 000 000 dollars
- Community Moderator
- Author was Featured
- Item was Featured
- Bought between 50 and 99 items
- Referred between 1000 and 1999 users
- Has been a member for 3-4 years
- Repeatedly Helped protect Envato Marketplaces against copyright violations
You’re welcome 
Thanks! Works great here too. ![]()
