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

Doc’s Auto-tags

설명

Assigns tags to posts containing specific text strings, handy for filtering within the loop. A gift to @docrock from @johnleblanc to help keep Instagr.am image posts out of the mrdocrock.com homepage loop. Born April 13, 2011 in Kaneohe, HI.

스크린샷

  • Configuration interface where text strings and corresponding tags (and/or categories) are defined: Tools -> Doc’s Auto-Tags

설치

  1. Install from the Plugins page within the Dashboard. For those with too much free time, download from the plugin page or subversion repository and upload docs-auto-tags to your plugins directory (usually /wp-content/plugins/ unless you’ve defined a custom value by overriding the WP_PLUGINS_DIR constant).
  2. Activate the plugin through the ‘Plugins’ menu in WordPress
  3. Configure your settings within the ‘Tools’ area in the Dashboard

FAQ

Great, my newly saved posts are being auto-tagged. How do I filter posts by tag within the WordPress Loop?

An example of query_posts():

Here’s a cleaner version excluding posts tagged with tag ID 42:
array( 10 ),
‘tag__not_in’ => array( 42 ),
‘paged’ => $paged,
);
query_posts($args);
?>

후기

이 플러그인에 대한 평가가 없습니다.

기여자 & 개발자

“Doc’s Auto-tags”(은)는 오픈 소스 소프트웨어입니다. 다음의 사람들이 이 플러그인에 기여하였습니다.

기여자

자국어로 “Doc’s Auto-tags”(을)를 번역하세요.

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

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

변경이력

0.7.1

Repo cleanup: release tagged with 0.6.1 was in a directory named 1.6.1 somehow

0.7

Applied fixes courtesy of Boris Kuzmanovic https://wordpress.org/support/topic/a-bug-found
Added plugin icon

0.6.1

Fixed another “Warning: Invalid argument supplied for foreach()” for real this time

0.6

Added Category support by request.

0.5

Fixed “Warning: Invalid argument supplied for foreach()” error https://wordpress.org/support/topic/plugin-docs-auto-tags-error-message-on-settings-page-after-install?replies=1#post-2456270

0.4

Documentation cleanup

0.3

Fix a bum function reference

0.2

Added management page

0.1

Initial Release