Title: The Permalinker
Author: Andy Stratton
Published: <strong>30 ມິຖຸນາ 2009</strong>
Last modified: 13 ທັນວາ 2024

---

ຄົ້ນຫາປລັກອິນ

ປລັກອິນນີ້ **ຍັງບໍ່ທັນໄດ້ຮັບການທົດສອບກັບ WordPress 3 ເວີຊັນຫຼັກຫຼ້າສຸດ**. ມັນອາດຈະ
ບໍ່ໄດ້ຮັບການເບິ່ງແຍງ ຫຼື ສະໜັບສະໜູນອີກຕໍ່ໄປ ແລະ ອາດມີບັນຫາການເຮັດວຽກຮ່ວມກັນເມື່ອ
ໃຊ້ກັບ WordPress ເວີຊັນທີ່ໃໝ່ກວ່າ.

![](https://s.w.org/plugins/geopattern-icon/the-permalinker.svg)

# The Permalinker

 ໂດຍ [Andy Stratton](https://profiles.wordpress.org/theandystratton/)

[ດາວໂຫຼດ](https://downloads.wordpress.org/plugin/the-permalinker.1.9.0.zip)

 * [ລາຍລອຽດ](https://lo.wordpress.org/plugins/the-permalinker/#description)
 * [ການຣີວິວ](https://lo.wordpress.org/plugins/the-permalinker/#reviews)
 *  [ການຕິດຕັ້ງ](https://lo.wordpress.org/plugins/the-permalinker/#installation)
 * [ການພັດທະນາ](https://lo.wordpress.org/plugins/the-permalinker/#developers)

 [ການຊ່ວຍເຫຼືອ](https://wordpress.org/support/plugin/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.⌉⌊Content with short codes.⌉[

Content with short codes.

[⌊The dynamic output.⌉⌊The dynamic output.⌉[

The dynamic output.

[⌊Markup.⌉⌊Markup.⌉[

Markup.

## ການຕິດຕັ້ງ

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

## ຄຳຖາມທີ່ພົບເລື້ອຍ

### 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” ແມ່ນຊອຟແວໂອເພັນຊອດ (Open Source). ບຸກຄົນຕໍ່ໄປນີ້ໄດ້ມີສ່ວນຮ່ວມໃນ
ການພັດທະນາປລັກອິນນີ້.

ຜູ້ຮ່ວມພັດທະນາ

 *   [ Andy Stratton ](https://profiles.wordpress.org/theandystratton/)

[ແປ “The Permalinker” ເປັນພາສາຂອງເຈົ້າ.](https://translate.wordpress.org/projects/wp-plugins/the-permalinker)

### ສົນໃຈຮ່ວມພັດທະນາບໍ່?

[ເບິ່ງລະຫັດ](https://plugins.trac.wordpress.org/browser/the-permalinker/), ກວດເບິ່ງ
[ຄັງເກັບ SVN](https://plugins.svn.wordpress.org/the-permalinker/), ຫຼື ຕິດຕາມ [ບັນທຶກການພັດທະນາ](https://plugins.trac.wordpress.org/log/the-permalinker/)
ຜ່ານ [RSS](https://plugins.trac.wordpress.org/log/the-permalinker/?limit=100&mode=stop_on_copy&format=rss).

## ບັນທຶກການປ່ຽນແປງ

#### 1.9.0

 * Added important security enhancements for escaping URLs and HTML content to prevent
   XSS and other potential security holes
 * Some legacy output may be affected as we are now escaping URLs and HTML attributes.
 * Content inside of the shortcode should _not_ be escaped as we want to preserve
   any HTML within that shortcode content/anchor text.

#### 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%

## ຂໍ້ມູນກຳກັບ (Meta)

 *  ເວີຊັນ **1.9.0**
 *  ອັບເດດຫຼ້າສຸດເມື່ອ **2 ປີ ທີ່ຜ່ານມາ** ທີ່ຜ່ານມາ
 *  ການຕິດຕັ້ງທີ່ໃຊ້ງານຢູ່ **100+**
 *  ເວີຊັນ WordPress ** 2.6 ຫຼື ສູງກວ່າ **
 *  ທົດສອບເຖິງເວີຊັນ **6.4.8**
 *  ພາສາ
 * [English (US)](https://wordpress.org/plugins/the-permalinker/)
 * ແທັກ
 * [development](https://lo.wordpress.org/plugins/tags/development/)[linking](https://lo.wordpress.org/plugins/tags/linking/)
   [migration](https://lo.wordpress.org/plugins/tags/migration/)[permalinks](https://lo.wordpress.org/plugins/tags/permalinks/)
   [staging](https://lo.wordpress.org/plugins/tags/staging/)
 *  [ມຸມມອງຂັ້ນສູງ](https://lo.wordpress.org/plugins/the-permalinker/advanced/)

## ການໃຫ້ຄະແນນ

 5 ຈາກທັງໝົດ 5 ດາວ.

 *  [  ການວິຈານ 5 ດາວ ຈຳນວນ 2 ລາຍການ     ](https://wordpress.org/support/plugin/the-permalinker/reviews/?filter=5)
 *  [  ການວິຈານ 4 ດາວ ຈຳນວນ 0 ລາຍການ     ](https://wordpress.org/support/plugin/the-permalinker/reviews/?filter=4)
 *  [  ການວິຈານ 3 ດາວ ຈຳນວນ 0 ລາຍການ     ](https://wordpress.org/support/plugin/the-permalinker/reviews/?filter=3)
 *  [  ການວິຈານ 2 ດາວ ຈຳນວນ 0 ລາຍການ     ](https://wordpress.org/support/plugin/the-permalinker/reviews/?filter=2)
 *  [  ການວິຈານ 1 ດາວ ຈຳນວນ 0 ລາຍການ     ](https://wordpress.org/support/plugin/the-permalinker/reviews/?filter=1)

[Your review](https://wordpress.org/support/plugin/the-permalinker/reviews/#new-post)

[ເບິ່ງ ຄຳຄິດເຫັນ ທັງໝົດ](https://wordpress.org/support/plugin/the-permalinker/reviews/)

## ຜູ້ຮ່ວມພັດທະນາ

 *   [ Andy Stratton ](https://profiles.wordpress.org/theandystratton/)

## ການຊ່ວຍເຫຼືອ

ມີຄຳຖາມ ຫຼື ຕ້ອງການຄວາມຊ່ວຍເຫຼືອບໍ່?

 [ເບິ່ງຟໍຣັມການຊ່ວຍເຫຼືອ](https://wordpress.org/support/plugin/the-permalinker/)

## ບໍລິຈາກ

ເຈົ້າຕ້ອງການສະໜັບສະໜູນການພັດທະນາຂອງປລັກອິນນີ້ບໍ່?

 [ ບໍລິຈາກໃຫ້ປລັກອິນນີ້ ](http://theandystratton.com/donate)