سلام
تا چند وقت پیش تعداد بازدید های هر نوشته بصورت اتومات در قسمت نوشته ها ، کنار هر نوشته نمایش داده میشد. ولی الان دیگه دیده نمیشه!
ایا باید تنظیمات خاصی انجام بدم؟
ممنون میشم کمکم کنید
سلام
تا چند وقت پیش تعداد بازدید های هر نوشته بصورت اتومات در قسمت نوشته ها ، کنار هر نوشته نمایش داده میشد. ولی الان دیگه دیده نمیشه!
ایا باید تنظیمات خاصی انجام بدم؟
ممنون میشم کمکم کنید
از این افزونه استفاده کنید
http://wordpress.org/extend/plugins/post-views
DePreSso گفت:
از این افزونه استفاده کنید
http://wordpress.org/extend/plugins/post-views
این فقط پست ها رو به ترتیب بازدید نشون میده وتعداد بازدید پستها رو نشون نمیده
معروف ترین پلاگین تو این زمینه:
http://wordpress.org/extend/plugins/wp-postviews/
برای نمایش دادن بازدید هر پست کد
<?php if(function_exists('the_views')) { the_views(); } ?>
هر جایی بعد از
<?php while (have_posts()) : the_post(); ?>
قرار بدید!
AriyaNet گفت:
معروف ترین پلاگین تو این زمینه:
http://wordpress.org/extend/plugins/wp-postviews/
برای نمایش دادن بازدید هر پست کد
<?php if(function_exists('the_views')) { the_views(); } ?>
هر جایی بعد از
<?php while (have_posts()) : the_post(); ?>
قرار بدید!
ظاهرا که اینم مثل قبلی هست! بعد کدی را که گفتین اضافه کنیم منظورتون تو سورس این افزونه هست؟
با سپاس
نه دوست عزیز!
منظورم تو قالبتون بود، فایل های index.php, single.php, archive.php, ... یا هر جای دیگه.
ظاهرا که اینم مثل قبلی هست!
همه این افزونه ها شبیه همند، کار همشونم شمارشه تعداد بازدید پست هاست!
AriyaNet گفت:
نه دوست عزیز!
منظورم تو قالبتون بود، فایل های index.php, single.php, archive.php, ... یا هر جای دیگه.
یعنی هم باید افزونه نصب بشه و هم این کدها اضافه بشن؟
البته من منظورم این بود که تعداد بازدید هر پست در کنار پست مثلا در کنار عنوان نشان داده شود، برای این کار باید از افزونه دیگه استفاده کنیم؟
با سپاس
ir80 گفت:
یعنی هم باید افزونه نصب بشه و هم این کدها اضافه بشن؟
البته من منظورم این بود که تعداد بازدید هر پست در کنار پست مثلا در کنار عنوان نشان داده شود، برای این کار باید از افزونه دیگه استفاده کنیم؟
با سپاس
بله! هم باید افزونه نصب باشه هم این کد اضافه بشه. شما سورس index و single رو اینجا قرار بده یا ایمیل کن تا درست کنم در صورتی که خودت نمی تونی. افزونه رو هم نصب کن حتما!!
خیلی ممنون
این سورس index
<?php
/**
* The main template file.
*
* This is the most generic template file in a WordPress theme
* and one of the two required files for a theme (the other being style.css).
* It is used to display a page when nothing more specific matches a query.
* E.g., it puts together the home page when no home.php file exists.
* Learn more: http://codex.wordpress.org/Template_Hierarchy
*
* @package Graphene
* @since Graphene 1.0
*/
global $graphene_settings;
get_header(); ?>
<?php
/* Check if the user selects specific category for the front page */
if ( is_home() && $graphene_settings['frontpage_posts_cats'] && ! in_array( 'disabled', $graphene_settings['frontpage_posts_cats'] ) ) {
global $wp_query;
$cats = $graphene_settings['frontpage_posts_cats'];
// Display the sticky posts first
$stickies = get_option('sticky_posts');
if ( get_query_var( 'paged' ) < 2 && ( $stickies ) ) {
$args = array( 'category__in' => $cats, 'post__in' => $stickies );
query_posts( apply_filters( 'graphene_frontpage_posts_cats_sticky_args', $args ) );
$wp_query->is_home = true;
$wp_query->is_category = false;
$wp_query->is_archive = false;
if ( have_posts() ){
get_template_part( 'loop', 'index' );
}
wp_reset_query();
}
// Display the rest of the posts from the category
$args = array( 'category__in' => $cats, 'paged' => get_query_var( 'paged' ), 'post__not_in' => $stickies );
query_posts( apply_filters( 'graphene_frontpage_posts_cats_args', $args ) );
$wp_query->is_home = true;
$wp_query->is_category = false;
$wp_query->is_archive = false;
}
do_action('graphene_index_pre_loop');
/* Run the loop to output the posts.
* If you want to overload this in a child theme then include a file
* called loop-index.php and that will be used instead.
*/
if ( ! ( is_home() && $graphene_settings['frontpage_posts_cats'] && ! have_posts() ) ) {
while ( have_posts() ) {
the_post();
get_template_part( 'loop', 'index' );
}
}
/* Posts navigation. */
graphene_posts_nav();
?>
<?php get_footer(); ?>
این هم سورس single
<?php
/**
* The Template for displaying all single posts.
*
* @package Graphene
* @since Graphene 1.0
*/
get_header(); ?>
<?php
/* Run the loop to output the posts.
* If you want to overload this in a child theme then include a file
* called loop-single.php and that will be used instead.
*/
the_post();
get_template_part('loop', 'single');
?>
<?php get_footer(); ?>
با سپاس
کدو قرار میدم توی بالای مطلب مینویسه که...یمخوام داخل کادر باشه..باید چیکار کنم /؟؟؟؟؟