A. M. Riffaz
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How to show specific meta keys of all posts in admin panel?Thanks for that Hannon. That plugin looks very useful.
Anyhow I am looking a for solution that I would be able to put code snippet on the functions.php Not using plugin.yeah something like that…
http://wordpress.org/support/view/plugin-reviews/yet-another-stars-ratingSorry my clients do not allow me to show the site before it’s published.
It’s working now after I’ve created the author.php and category.php
What the file I want to create to show the proper post for archive links like
<strong> NOVEMBER 2013, then it's should show the posts under http://www.mydomain.com/blog/2013/11/</strong>?Now the same scenario continues.
but this time I got the archive page content under the different URL as I mentioned above.please some shout here.
that will be very help full.
here is my archive.php<?php /* Template Name: Archive */ get_header(); ?> <div id="container"> <div id="content" role="main"> <div class="row"> <section class="large-12 columns"> <?php get_search_form(); ?> </section> <section class="large-12 columns"> <h3>Archive by Date</h3> <?php wp_get_archives( array( 'type' => 'monthly', 'limit' => 12, 'show_post_count' => 1 ) ); ?><br/> </section><!-- #content --> <section class="large-12 columns"> <h3>Archive by Category</h3> <?php wp_list_categories( array ( 'title_li'=> '' , 'show_count' => 1))?><br/> </section><!-- #content --> <section class="large-12 columns"> <h3>Archive by Author</h3> <?php wp_list_authors( array ('optioncount' => 1)); ?> </section><!-- #content --> </div><!-- #primary (.row) --> </div><!-- #content --> </div><!-- #container --> <?php get_footer(); ?>