이 플러그인은 최근 3개의 주요 워드프레스 출시와 시험 되지 않았습니다. 워드프레스의 좀 더 최근 버전으로 이용할 때 더 이상 관리되지 않고 지원되지 않고 호환성 문제가 있을 수 있습니다.

bbP Topic Views

설명

bbP Topic Views keeps track of how many times each bbPress topic has been viewed, and then displays the count alongside the title or meta of the topic on forums pages, topic archive pages, tag pages and view pages.

The plugin is written in such a way that it does not double-count views when a visitor browses to a different page in the same topic. If no view count record exists for a specific topic, the plugin will create a record for it. Rather than setting the initial view count to zero, the plugin sets it to the number of posts in the topic, because it has obviously been viewed at least as many times as people have posted in it! This is especially nice for adding the plugin to existing bbPress forums so the view count isn’t zero for every single topic.

The plugin also offers you some functions, which you can call in your template to output the topic view count and some shortcodes which you can place in your posts to generate a topic table for most viewed topics (see Other Notes). As you might have guessed till now, there is also a view for the same.

This plugin is a fork of ck and wittmania’s bb Topic Views plugin for bbPress standalone. Many thanks to them!

Shortcode

  • [bbp-single-view id="btv-most-viewed"] to generate a topic table for most viewed topics.

Function Calls

  • $bbp->shortcodes->display_view( array( 'id' => 'btv-most-viewed' ) ); to generate a topic table for most viewed topics.
  • btv_topic_view_count( $topic_id ) or
  • btv_get_topic_view_count( $topic_id ) to output or retrieve the view counts for the supplied topic id (optional, if not passed, it is guessed by using the bbp_get_topic_id() function).

To add a view count column to front page, forum, and/or tags page tables, make the following modifications. Note: these apply to the default bbPress (TwentyTen) theme. If you are using a different theme, or a highly modified version of the default, your modifications may be slightly different. It is recommended if you make a child theme of your theme before following these steps so that when you upgrade bbPress or your theme, your changes are not lost.

  1. Go to Admin Section -> Settings -> Forums -> (scroll down to) bbP Topic Views and check the add nowhere option. This will prevent the view count from being added anywhere automatically.
  2. Open your-theme-name/bbpress/loop-topics.php. Around line 17, you would find:

    Replace it with:

Around line 71, you would find:

Replace it with:

You can rearrange the order of the columns if you’d like, just make sure you get them in the right order for each section.

Translations

Donate

You may donate by going here.

Todo

Nothing for now.

스크린샷

  • Most Viewed View
  • Settings Section

설치

  1. Install in your plugins folder and activate.
  2. Go to Settings -> Forums -> (scroll down to) bbP Topic Views and
    configure the settings.

FAQ

What is required to run this?

You should be running WordPress 3.3+ and bbPress 2.0+.

후기

모든 3 평가 읽기

기여자 & 개발자

“bbP Topic Views”(은)는 오픈 소스 소프트웨어입니다. 다음의 사람들이 이 플러그인에 기여하였습니다.

기여자

자국어로 “bbP Topic Views”(을)를 번역하세요.

개발에 관심이 있으십니까?

코드 탐색하기는, SVN 저장소를 확인하시거나, 개발 기록RSS로 구독하세요.

변경이력

0.2 (2011-10-7)

  • Fixes the most viewed topics view (thanks to InterMike for reporting it)
  • Add Italian Translation by Alex
  • Some minor fixes which might have resulted in errors or notices
  • l10n/i18n fixes

0.1 (2011-08-22)

  • Initial Release