[WordPress] 外掛分享: Sewn In Simple SEO

WordPress 外掛 Sewn In Simple SEO 的封面圖片。

前言介紹

  • 這款 WordPress 外掛「Sewn In Simple SEO」是 2015-02-15 上架。
  • 目前有 80 個安裝啟用數。
  • 上一次更新是 2017-09-02,距離現在已有 3098 天。超過一年沒更新,安裝要確認版本是否可用。以及後續維護問題!
  • 外掛最低要求 WordPress 3.6.1 以上版本才可以安裝。
  • 有 4 人給過評分。
  • 還沒有人在論壇上發問,可能目前使用數不多,還沒有什麼大問題。

外掛協作開發者

ekaj | jcow |

外掛標籤

seo | meta data | search engine |

內容簡介

這個外掛程式提供了一個快速簡單的介面,讓您可以輕鬆為頁面或文章添加 SEO meta 資料。設計的初衷是移除您不需要的所有額外東西。這個外掛程式非常簡單,沒有任何混淆的額外選項或討人厭的廣告,所以您可以輕鬆地使用它並放心地給客戶。

可自行選擇要添加到哪些文章類型中(預設為公開的文章類型)
能良好地整合到 Sewn In XML Sitemap 外掛程式中,因此它們會合併為一個面板,方便您編輯。
使用 Sewn In Simple Social Optimization 外掛程式能完全控制 Facebook 和 Twitter 的社交分享設定。

非常簡單,沒有任何您不需要的雜物或額外功能。

控制要添加的文章類型

預設僅會添加頁面和文章,但您可以使用以下篩選器刪除它們中的其中一個或兩個,或是添加更多文章類型:

/**
* 完全替換 XML sitemap 和 SEO 編輯功能中的文章類型
*
* 這會完全替換預設值。返回值:array('news','event')
*
* 這會刪除 'post' 和 'page' 文章類型,並添加 'news' 和 'event' 文章類型
*
* @param array $post_types 要添加到 XML Sitemap 的文章類型清單
* @return array $post_types 修改過後的文章類型清單
*/
add_filter( 'sewn/seo/post_types', 'custom_sitemap_post_types' );
function custom_sitemap_post_types( $post_types ) {
$post_types = array('news','event');
return $post_types;
}

添加關鍵字

要節制使用關鍵字,如果使用不當的話,meta 關鍵字會造成更多的傷害。不要過度使用。因此,我們預設已關閉此功能。如果您需要關鍵字,您可以在 functions.php 中開啟它們:

add_filter( 'sewn/seo/add_keywords', '__return_true' );

啟用自動產生描述

我們不建議這樣做。meta 描述應當用作製作搜尋引擎顯示內容的方式,否則只能讓搜尋引擎自行產生內容。這對可見度沒有一個有效的影響,甚至可能會阻礙搜尋引擎深入查找頁面中的其他內容。糟糕的描述可能會造成損害,並且很可能沒有任何好處。

add_filter( 'sewn/seo/default_description', '__return_true' );

其他篩選器
/**
* 自訂首頁或部落格頁面標題
*/
add_filter( 'sewn/seo/home_title', 'custom_seo_home_title' );
function custom_seo_home_title( $title ) {
return '我的部落格頁面標題';
}

/**
* 自訂 404 標題
*/
add_filter( 'sewn/seo/404_title', 'custom_seo_404_title' );
function custom_seo_404_title( $title ) {
return '您搜尋的頁面不存在';
}

/**
* 自訂存檔標題
*/
add_filter( 'sewn/seo/archive_title', 'custom_seo_archive_title' );
function custom_seo_archive_title( $title ) {
// 自訂標題
}

/**
* 自訂存檔描述
*/
add_filter( 'sewn/seo/archive_description', 'custom_seo_archive_description' );
function custom_seo_archive_description( $description ) {
// 自訂描述在此
}

相容性

能與Sewn In XML Sitemap 外掛程式和

原文外掛簡介

Adds a fast, simple interface for adding SEO meta data to pages and posts. Designed to remove all of the extra stuff that you just won’t use. It is made to be straight forward for users with no confusing extras and no annoying ads. So you can enjoy using it and feel comfortable putting it before a client.

Choose which post types it is added to (public post types by default)
Integrates nicely with the Sewn In XML Sitemap plugin, so they get merged into one panel for editing.
Use the Sewn In Simple Social Optimization plugin to add full control over social sharing settings for Facebook and Twitter.

Very simple, no cruft or extra features you won’t use.
Control what post types are added
By default only pages and posts are added, but you can remove either of those and/or add more using this filter:
/**
* Completely replace the post types in the XML sitemap and SEO edit functionality
*
* This will replace the default completely. Returns: array('news','event')
*
* The result is to remove 'post' and 'page' post types and to add 'news' and
* 'event' post types
*
* @param array $post_types List of post types to be added to the XML Sitemap
* @return array $post_types Modified list of post types
*/
add_filter( 'sewn/seo/post_types', 'custom_sitemap_post_types' );
function custom_sitemap_post_types( $post_types ) {
$post_types = array('news','event');
return $post_types;
}

Add Keywords
Use sparingly. Meta keywords can do more harm than help when used incorrectly. Don’t overload them. For that reason, we turned it off by default. If you want them, you can turn them back on by adding this to your functions.php.
add_filter( 'sewn/seo/add_keywords', '__return_true' );

Turn on Auto-Generated Descriptions
We don’t recommend this. The meta description should be used as a way to craft what the search engines show, otherwise, let the search engines auto generate the descriptions. It doesn’t really have a significant impact on visibility and may hinder visibility by keeping the search engine from digging as deep into the rest of the page. Bad descriptions may do harm, and likely don’t do any good.
add_filter( 'sewn/seo/default_description', '__return_true' );

Other filters
/**
* Custom home or blog page title
*/
add_filter( 'sewn/seo/home_title', 'custom_seo_home_title' );
function custom_seo_home_title( $title ) {
return 'My blog page title';
}

/**
* Customize 404 titles
*/
add_filter( 'sewn/seo/404_title', 'custom_seo_404_title' );
function custom_seo_404_title( $title ) {
return 'These are not the pages you are looking for';
}

/**
* Customize archive titles
*/
add_filter( 'sewn/seo/archive_title', 'custom_seo_archive_title' );
function custom_seo_archive_title( $title ) {
// Customize the title
}

/**
* Custom archive descriptions
*/
add_filter( 'sewn/seo/archive_description', 'custom_seo_archive_description' );
function custom_seo_archive_description( $description ) {
// Custom description here
}

Compatibility
Works with the Sewn In XML Sitemap plugin and the Sewn In Simple Social Optimization plugin. When installed, the XML sitemap checkbox integrates with the SEO fields. The goal is to keep things very simple and integrated.

各版本下載點

  • 方法一:點下方版本號的連結下載 ZIP 檔案後,登入網站後台左側選單「外掛」的「安裝外掛」,然後選擇上方的「上傳外掛」,把下載回去的 ZIP 外掛打包檔案上傳上去安裝與啟用。
  • 方法二:透過「安裝外掛」的畫面右方搜尋功能,搜尋外掛名稱「Sewn In Simple SEO」來進行安裝。

(建議使用方法二,確保安裝的版本符合當前運作的 WordPress 環境。


2.0.3 | 2.0.4 | 2.0.5 | 2.0.6 | 2.0.7 | 2.0.8 | 2.0.9 | 2.1.2 | 2.1.3 | trunk |

延伸相關外掛(你可能也想知道)

  • HeadSpace2 SEO 》HeadSpace2 是一個全方位的元數據管理器,讓您可以精細調整網站的 SEO 潛力。造訪HeadSpace頁面,了解更多功能與演示影片。, 您可以配置如下的元數據:, , 文...。
  • TP Education 》= '' ); // Team Designation, tp_team_email( $post_id = '' ); // Team Email, tp_team_phone( $post_id = '' ); // Team Phone, tp_team_social_links( $p...。
  • Simple SEO Improvements 》Simple SEO improvements – 輕巧的解決方案,強化您的網站。, 更改所有文章類型和分類法的 HTML 標題和 META robots 欄位。, 內容編輯功能可讓您為頁面...。
  • ImageMeta 》ImageMeta可以幫助WordPress用戶更有效地管理圖片的標題、說明、描述和替代文字,通過提供一個中央分頁表格,包括uploads目錄,編輯欄位可立即更新選定的參數...。
  • Education Connect 》這是一個 WordPress 外掛,可以建立自訂文章類型,包含「活動 (Events)」、「課程 (Courses)」、「教師 (Team)」和「推薦 (Testimonial)」。每個文章類型都具...。
  • Debug Meta Data 》此外掛可以為所有文章類型建立一個包含文章的 meta-data 資訊的 meta box。其中會有 meta key、meta value、以及其 var_dump 的資訊。, 安裝並啟用此外掛,即...。
  • Extend Revisions for Custom Fields and Taxonomies 》這個 WordPress 外掛可以擴充 revisions 的功能,讓 custom fields 和 taxonomies 也能儲存並比較其中的變更。使用此外掛後,系統會自動開始捕捉這些資訊,並...。
  • Apple Meta Tags 》讓您輕鬆地在網站標頭中插入所有蘋果網站圖示、觸控圖示和開始螢幕的高清晰度 Apple Meta Tags。, 本地化, , 英文 (美國)【預設】- 總是包含在內。語言資料夾...。
  • MetaViewer – Debug Meta Data 》<!DOCTYPE html>, <html>, <body>, , <h2>WordPress 外掛 MetaViewer 總結:</h2>, <p>MetaViewer 外掛幫助開發人員和進...。
  • TP Travel Package 》這是一個外掛,可以添加自定義文章類型(目的地和套餐),以及旅遊網站所需的元字段。該專為旅遊主題所設計。, 模板覆蓋, * 創建名為“tp-travel-packagee”的...。
  • Sewn In Simple Social Optimization 》此外掛提供快速簡易介面,方便在頁面和文章中加入社交媒體的 meta 資料。設計上減少您所不需要的冗餘設定,讓使用者可以輕鬆上手,不影響使用體驗,也不含煩...。
  • Search For Custom Fields 》這個外掛可以增強 WordPress 的自訂欄位功能:, – 在編輯文章或頁面時簡化欄位的建立過程。, – 啟用 widget 後可提供訪客使用欄位搜索功能。, &#...。
  • Plugin Info to CSV 》這是一個簡單的外掛程式,可以提取WordPress上安裝的所有外掛程式的元資訊(例如,外掛程式的版本號、最後更新日期、與WordPress版本的相容性、作者名稱和外...。
  • meta boxes 》使用此外掛可以建立自訂文章,並且可以在這些自訂文章、文章和頁面中添加各種類型的元框。, 現在要如何在模板文件中獲取這些元框的值?, 在模板文件中呼叫此...。
  • Delete Post Meta 》- 插件名稱:根據 meta key 刪除文章元數據, - 使用此插件需謹慎操作,它將刪除所有基於一個 meta key 的文章元數據。, , HTML 編碼呈現為項目清單:, <ul...。

文章
Filter
Apply Filters
Mastodon