확장: 링크 타이틀

This page is a translated version of the page Extension:LinkTitles and the translation is 100% complete.
미디어위키 확장 기능 설명서
LinkTitles
출시 상태: 안정
구현 Page action
설명 기존 페이지의 제목과 일치하는 단어에 자동으로 링크를 추가합니다.
만든 이 Daniel Kraus (bovender토론)
최신 버전 8.1.1 (2024-01-05)
MediaWiki 1.35+
PHP 5.3+
데이터베이스 변경 아니오
라이선스 GNU General Public License 2.0 or later
다운로드
README.md
What's new?
autolinks, noautolinks
linktitles-batch

LinkTitles 확장자는 자동으로 주어진 페이지에서 나타나는 기존 페이지 제목에 링크를 추가합니다. 이것은 자동으로 위키를 당신을 위해 횡단 참조를 합니다. 확장자는 독립적으로 사용할 수 있는 세 가지 방법으로 작동할 수 있습니다.

  1. Whenever a page is edited and saved, the extension will look if any existing page titles occur in the text, and automatically add links ([[...]]) to the corresponding pages.
  2. Links may also be added on the fly whenever a page is rendered for display. Most of the time, MediaWiki will fetch previously rendered pages from cache upon a page request, but whenever a page is refreshed, the LinkTitles extension can add its page links. These links are not hard-coded in the Wiki text. The original content will not be modified.
  3. Batch mode enables Wiki administrators to process all pages in a Wiki at once. Batch processing can either be started from a special page, or from the server's command line (see below).

설치

  • 파일을 Download, extract하고 LinkTitles 폴더를 extensions/ 디렉토리에 넣어 주세요.
  • 아래의 코드를 LocalSettings.php 코드의 마지막에 추가합니다.
    wfLoadExtension( 'LinkTitles' );
    
  • Configure as required.
  •   완료 – 위키의 ‘Special:Version’에 이동해서, 확장기능이 올바르게 설치된 것을 확인합니다.

기본 설정

Usage and configuration information can be found in the README.md file in the extension's repository.