Make featured image link to blog post

外掛說明

Adds a function to the function.php file of your current active theme. This function will make the featured image link back to the blog the image was inserted.
This way you do not have to change your themes files and your changes will not be gone after a theme update.

Make sure your theme doesn’t allready have this function. Some themes allready have this function by default.

螢幕擷圖

  • Example of the php code used.

安裝方式

  1. Upload the plug-in files to the \\’/wp-content/plugins/\\’ folder, or install from the WordPress plugin library.
  2. Activate the plug-in from the WordPress plug-in menu.

常見問題集

Q: How does this plug-in work?

A: It just adds a simple code to the function.php file of you active theme. This will add a link to the featured image which is added to a blog.

Q: Which code is added?

A: function wpb_autolink_featured_images( $html, $post_id, $post_image_id ) {$html = ‘‘ . $html . ‘‘; return $html;} add_filter( ‘post_thumbnail_html’, ‘wpb_autolink_featured_images’, 10, 3 );

Q: Do I need to change anything in my settings?

A: Nope. Just activate the plug-in and add a featured image to a post. That is it.

使用者評論

這個外掛目前沒有任何使用者評論。

參與者及開發者

以下人員參與了開源軟體〈Make featured image link to blog post〉的開發相關工作。

參與者

〈Make featured image link to blog post〉外掛目前已有 1 個本地化語言版本。 感謝全部譯者為這個外掛做出的貢獻。

將〈Make featured image link to blog post〉外掛本地化為台灣繁體中文版

對開發相關資訊感興趣?

任何人均可瀏覽程式碼、查看 SVN 存放庫,或透過 RSS 訂閱開發記錄

變更記錄

1.11

  • Updated and tested up to WordPress version 6.5.

1.10

  • Updated and tested up to WordPress version 6.4. Changed Stable tag to version number.

1.9

  • Updated and tested up to WordPress version 6.3.

1.8

  • Updated and tested up to WordPress version 6.2.

1.7

  • Updated and tested up to WordPress version 6.1. Changed minimal required PHP version to 7.0.

1.6

  • Updated and tested up to WordPress version 6.0

1.5

  • Updated and tested up to WordPress version 5.9

1.4

  • Updated and tested up to WordPress version 5.8

1.3

  • Minor code change

1.2

  • Updated and tested up to WordPress version 5.7

1.1

  • Minor changes in the tags and description

1.0

  • First release of the plugin.