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

The Permalinker

설명

Use short codes to dynamically link to your WordPress pages and posts. All you need is the ID. This can come in handy when developing content for WordPress sites. Makes for a cleaner migration with no need to manipulate content when moving from one subdirectory or domain to another.

Attributes of append class, rel, and target are supported within the [permalink] opening tag. See FAQs. You can insert the token %post_title% to dynamically insert the post’s title into anchor text (content between the opening and closing shortcode).

A short code for [template_uri] exists if you’d like to dynamically grab the full URL to your current template directory (useful for adding images and other resources bundled in a template via the page/post editor).

Example 1: Create link.

[permalink id=2 rel="internal"]Check out my latest post named %post_title%[/permalink] or use `[permalink]this link[/permalink]` to link to this post.

Example 2: Output Permalink URL.

<a href="[permalink]">;This post.</a>;

Example 3: Template Directory URI

<img src="[template_uri]/photos/me_grandma.jpg" alt="A Photo of Me and My Grandma" />

스크린샷

  • Content with short codes.
  • The dynamic output.
  • Markup.

설치

  1. Download and unzip to the ‘wp-content/plugins/’ directory
  2. Activate the plugin.

FAQ

I’ve got multiple permalinker short codes and it’s interpreting them incorrectly and not creating the anchor tags properly. What gives?

It is recommended that if you are mixing non-terminating short codes with terminating codes, that you change all non-terminating
short codes into terminating short codes with whitespace as the content:

[permalink] becomes `[permalink] [/permalink]`

Leading or trailing whitespace is trimmed off of any content within the permalinker short code tags.

Can I add a class, rel, or target attribute to the permalinker output?

Yes. Simply add class, rel, or target attributes to the [permalink] short code and they will be added to the resulting anchor element:

[permalink id="232" rel="related" target="_blank" class="highlight"]My favorite post[/permalink]

Can I append a named anchor/ID/query string to the generated permalink?

Yes! Simply use the new append attribute (added in version 1.6):

[permalink id="232" append="#comments"]People are talking, talking 'bout people.[/permalink]

후기

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

기여자 & 개발자

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

기여자

자국어로 “The Permalinker”(을)를 번역하세요.

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

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

변경이력

1.8.0

  • WP 5.6 + PHP 7.4 compatibility
  • Minor code formatting clean up
  • Moved help documentation to Admin > Dashboard menu

1.7.1 (2019-04-28)

  • WP 5.2 compatibility

1.7 (2012-01-06)

  • Added ability to dynamically insert post_title into anchor text using the token %post_title%