Theme Appearance [closed]

every theme appears as basic HTML. So all the pictures, functionality, etc, do not appear When you visit any page which showcases a theme, or even check out the theme’s preview image (which is the image that shows up under the theme selection page in the back end), you will see an image of the … Read more

Noob Loop Question

If you want to check the number of posts on each page, you can use the found_posts method of WP_Query : <?php $paged = (get_query_var(‘paged’)) ? get_query_var(‘paged’) : 1; $portfolio = new WP_Query(array(‘post_type’ => ‘project’, ‘posts_per_page’ => 12, ‘paged’ => $paged)); if ($portfolio && $portfolio->found_posts >= 2) : while ($portfolio->have_posts()) : $portfolio->the_post(); echo “<div>”; the_title(); … Read more

How long is WordPress 3.9.2 supported?

AFAIK, support is dropped as soon as a major version is released. Actually, in true sense, if you take into account the major releases, support is never dropped, it just falls over into the next major release. A major version are not necessarily meant to just introduce new features in WordPress, but it also addresses … Read more