Why is my Blog Page ID == First Post ID?

the ‘posts page’ ID when using a static front page and a different posts page is: get_option( ‘page_for_posts’ ) in some context: if( is_home() && get_option( ‘page_for_posts’ ) ) { $page_ID = get_option( ‘page_for_posts’ ); }

Split Blog Into Two Sections?

My first thought was to create 2 main categories. Exclude one from the wordpress loop on index.php and then only show that category on a different page. The only problem with this method is that the users would have to make sure they are posting in the correct category. However if you used a plugin … Read more

Show the page title on blog page

The call for the page title is outside the loop so you need to use this function instead: <?php echo get_the_title(); ?> Here is the updated code: <?php get_header(); ?> <section id=”primary-content” class=”col-md-9″> <?php echo get_the_title(); ?> <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> <div class=”post”> <h2><a href=”https://wordpress.stackexchange.com/questions/146051/<?php the_permalink(); … Read more

Deleting a blog

Without email. You can’t get the password reset link from WordPress.com It’s better to knock the WordPress support they may help you remove the blog.

Blog Posts in Custom Menu

I am little bit unsure, if this could really be an answer 🙂 But I think, you can simply create categories – Cooking, Beauty, Style. Assign those categories to respective posts. Then add these categories as menus. Now, when user clicks on any of the menu, he will see posts belonging to the respective category. … Read more