Blog Post Title apearing twice

You need to remove the archive description automitically generated by genesis. Look in your archive page template and remove(*) something like do_action(‘before_archive_posts’); (*) You can update your question with your archive template code. As I don’t use this theme, I don’t know the right name, and more details you could remove this action easily in … Read more

WordPress display page information rather than post

I figured out a solution. It works, not entirely sure if it’s best practice but I queried the posts first and it seems to show up. Here’s my code; <?php query_posts(‘showposts=2’); if (have_posts()) : while (have_posts()) : the_post(); ?> I then closed the if statement with; <?php endif; wp_reset_query(); ?>

How to add add blank non-editable wp page like default blog for use with plugin

You can do it by hooking admin_init action: First, you can create a option to select the page you create for your plugin. I suppose that the option will be save in wp_options table with name your_plugin_special_page. Remove editor support on that page with this action. add_action( ‘admin_init’, ‘your_plugin_hide_editor’ ); function your_plugin_hide_editor() { // Get … Read more