انجمن


درخواست یک کمک در مورد افزونه ی بازدید از هر مطلب  (۲ نوشته)

  • امیرسالار

    آفلاین
    عضو
    تعداد نوشته‌ها: ۸۳
    تشکر شده: ۵ بار
    # نوشته شده: ۱۴ سال پیش
    ۱ بهمن ۱۳۸۸ - ۲۰:۴۳

    سلام من یه مشکلی برام پیش اومده اونم اینه که دارم فروشگاه راه می اندازم ولی قالبم از ابزارک پشتیبانی نمیکنه.
    برای همین وقتی می خوام از افزونه ی wp-postviews برای نشان دادن بازدید از هر مطلب بکنم یعنی می خوام بیشترین محصولات بازدید شده رو نشون بدم نمی تونم از ابزارکش استفاده کنم
    می خواستم ببینم آیا شما دوستان کدی دارین که بتونه این کار رو بکنه یا از افزونه این اطلاعات رو بگیره؟

  • Mostafa

    آفلاین
    ناظم
    تعداد نوشته‌ها: ۵۲۷۶
    تشکر شده: ۵۷۷۷ بار
    # نوشته شده: ۱۴ سال پیش
    ۱ بهمن ۱۳۸۸ - ۲۳:۱۴

    پيشنهاد ميشود فايل ضميمه readme.html افزونه رو بخونيد

    View Stats (Outside WP Loop)
    
        * To Display Least Viewed Posts
        * Use:
    
              <?php if (function_exists('get_least_viewed')): ?>
                 <ul>
                    <?php get_least_viewed(); ?>
                 </ul>
              <?php endif; ?> 
    
          The first value you pass in is what you want to get, 'post', 'page' or 'both'.
          The second value you pass in is the maximum number of post you want to get.
    
          Default: get_least_viewed('both', 10);
        * To Display Most Viewed Posts
        * Use:
    
              <?php if (function_exists('get_most_viewed')): ?>
                 <ul>
                    <?php get_most_viewed(); ?>
                 </ul>
              <?php endif; ?> 
    
          The first value you pass in is what you want to get, 'post', 'page' or 'both'.
          The second value you pass in is the maximum number of post you want to get.
    
          Default: get_most_viewed('both', 10);
        * To Display Least Viewed Posts For A Category
        * Use:
    
              <?php if (function_exists('get_least_viewed_category')): ?>
                 <ul>
                    <?php get_least_viewed_category(); ?>
                 </ul>
              <?php endif; ?> 
    
          The first value you pass in is the category id.
          The second value you pass in is what you want to get, 'post', 'page' or 'both'.
          The third value you pass in is the maximum number of post you want to get.
    
          Default: get_least_viewed_category(1, 'both', 10);
        * To Display Most Viewed Posts For A Category
        * Use:
    
              <?php if (function_exists('get_most_viewed_category')): ?>
                 <ul>
                    <?php get_most_viewed_category(); ?>
                 </ul>
              <?php endif; ?> 
    
          The first value you pass in is the category id.
          The second value you pass in is what you want to get, 'post', 'page' or 'both'.
          The third value you pass in is the maximum number of post you want to get.
    
          Default: get_most_viewed_category(1, 'both', 10);
        * To Sort Most/Least Viewed Posts
        * You can use:
    
              <?php query_posts('v_sortby=views&v_orderby=desc') ?> 
    
          Or pass in the variables to the URL:
    
              http://yoursite.com/?v_sortby=views&v_orderby=desc 
    
          You can replace desc with asc if you want the least viewed posts.
    کاربران زیر به‌خاطر این نوشته تشکر کرده‌اند:
    امیرسالار

درباره‌ی این موضوع