WP Multisite Static Frontpage

I would recommend waiting until WordPress 3.4 is released. Among other features, it is slated to include the ability to allow Themes to define/declare a static front page. I believe this functionality should suit your needs. (Note: as of today, WordPress 3.4 just hit Beta 1, and is scheduled for final release in May.)

Pagination is somewhat working on frontpage, doesn’t update when “prev” is clicked

I suspect your problem is here: ‘base’ => get_pagenum_link(1) . ‘%_%’ You’re passing 1 to get_pagenum_link(), rather than the actual page number. Try passing your previously determined $current_page instead: ‘base’ => get_pagenum_link( $current_page ) . ‘%_%’ Note, I use this as base: ‘base’ => @add_query_arg(‘paged’,’%#%’) Edit I tried your suggestion as well as the ‘@add_query_arg’ … Read more

Output shows a page instead of a list of blog postings

Turn your Settings->Reading Blog and Home page back to default. Front-page.php is pulling your homepage content instead of your posts because you’ve told it to in your settings. front-page.php could also display the latest posts on your homepage, but if you’ve altered the settings so that a Static Page is your homepage then this file … Read more

Preventing frontpage to be deleted/moved to trash

There are two problems with your code snippet: 1) Comparison The first problem is in this line: if( $post_id === $frontpage || $post_id === $blogpage ) { where you’re strictly comparing int with string. Notice that === comparison will only return TRUE if both variables are of the same type and have the same value. … Read more

front end publishing not working on front-end page

thanks to @TheDeadMedic, I found the solution. I used reserved terms, and that’s why WordPress interpreted my inputs as query parameters. so for example with my categorys, I had to change my classes in my form : ‘post_category’ => array($_POST[‘cat’]), // Usable for custom taxonomies too by ‘post_category’ => array($_POST[‘my_cat’]), // Usable for custom taxonomies … Read more

Can’t edit front page of website [closed]

From my experience, some themes have their own setting with options to display additional information on the homepage. To find out what’s being used for the front page, do the following: Navigate to Settings > Reading Under Front page displays it will show which page is being used It’s hard to determine what your set … Read more