Blog on a separate server from WooCommerce WITHOUT effecting SEO?
Blog on a separate server from WooCommerce WITHOUT effecting SEO?
Blog on a separate server from WooCommerce WITHOUT effecting SEO?
How do you allow users to subscribe to a WordPress blog?
Making a column vector in wordpress blog using Latex
If your blog is self-hosted, the easiest way to add a comment voting system is to install a plugin (e.g. Comment Rating). If your blog is on WordPress.com, then you’d need to go through the options the options on WordPress.com to see where you could enable that functionality.
If you’re wanting to display some posts but not have it function like the blog (with the prev/next links) then this should do the trick. <?php global $post; $args = array( ‘numberposts’ => 10, ‘post_type’ => ‘post’, ); $myposts = get_posts( $args ); foreach( $myposts as $post ) : setup_postdata($post); ?> [act like it’s the … Read more
Can we have both a private company blog and a public blog with WordPress? Yes, but it depends on how you define private. We use WP multisite subdomains. We have over 200 sites, most of them public. But we have a few sites that are “private” – requires user to login. Additionally the user has … Read more
Otherwise as suggested, this has nothing to do with template hierarchy. These templates that you are mentioning is purely for use with post formats. I qoute from the codex Post Formats is a theme feature introduced with Version 3.1. A Post Format is a piece of meta information that can be used by a theme … Read more
You could try the following SQL query: “SELECT DISTINCT post_author FROM $wpdb->posts WHERE post_author NOT IN (1,3,4)” to exclude authors 1,3 and 4. In general it would be more handy to retrieve the user ids automatically, so you wouldn’t need to update your SQL query every time you want to exclude someone. You could for … Read more
Add the <meta name=”robots” content=”noindex”> meta tag within your <head>. Then look into is_category() to add it specifically to your category pages. Or alternatively, you can check if $cat_id is available: $cat_id = get_query_var(‘cat’); If it is available, then it is a category page. EDIT Just add it in an IF statement: if (is_category()){ <meta … Read more
Possible causes – 1) The template which is being applied for this page is having 0 (static or some evaluated result) as prefix to the post content. 2) It’s being added via filtering done by any piece of code in the theme or any plugin through the hook the_content. 3) If the result of each … Read more