Blog url disappears

Because this is how WP is set. You have set your permalinks structure to /%category%/%postname%/ so when you click on a post link, you will have that post /%category%/ and then /%postname%/. I guess you wished to have a structure like /blog-page/%category%/%postname%/. well just add this to your permalink settings /blog-page/%category%/%postname%/.

why does blog page ignore template [closed]

Refer to the Template Hierarchy Codex entry. The template hierarchy for the blog posts index is as follows: home.php index.php There is no case where the blog posts index will use a page template, either the default page template or a custom page template. The determination is controlled by wp-includes\template-loader.php. Refer to Line 31: elseif … Read more

How to save the same post in multiple blogs?

You can hook on save_post or publish_post hook in each post and publish in other blogs. You must use the function switch_to_blog() to switch in other blog and then use [wp_insert_post()][2] to save a post inside this blog; do this for each blog. Alternative is you search for a plugin, there doing this; like Multi … Read more

Wp-theme Development

Please check how the Loop works, followed by the correct way to instantiate a new Query. Try this: <?php // The correct way to create a new Query $newquery = new WP_Query( array( ‘category_name’ => ‘notice’, ‘posts_per_page’ => 1 )); // Check if query found posts, then start the Loop if($newquery->have_posts) : while ($newquery->have_posts() ) … Read more

How to add a widget area between blog posts in Genesis Framework?

This thread – http://wordpress.org/support/topic/how-to-put-adsense-after-first-topic – explains how to add something after the first post so I would assume you could change the 1 to a 3 to have it display after the third? And this page explains how to add a widgetized area: http://quirm.net/2011/09/15/widgetizing-any-page/ So you would put the php for the dynamic sidebar where … Read more

How do i Sort my Posts

You can order your posts by several strings that are available in WP. The normal way is by alphabetizing or via a plugin. You have the option between order by name or date. But if you want to order your posts by custom tags eg. “most popular”, “relevance”,… Then you could custom code that in … Read more