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

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

前言介紹

  • 這款 WordPress 外掛「Sewn In Simple SEO」是 2015-02-15 上架。
  • 目前有 90 個安裝啟用數。
  • 上一次更新是 2017-09-02,距離現在已有 2800 天。超過一年沒更新,安裝要確認版本是否可用。以及後續維護問題!
  • 外掛最低要求 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 |

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

  • Yoast SEO 》Yoast SEO:#1 WordPress SEO 外掛, 自 2008 年以來,Yoast SEO 幫助全球數百萬個網站在搜尋引擎中排名更高。, Yoast 的使命是為所有人提供 SEO 服務。我們的...。
  • LiteSpeed Cache 》LiteSpeed Cache for WordPress(LSCWP)是一種全方位的網站加速外掛,包括獨家的伺服器層快取和一系列的優化功能。, LSCWP 支援 WordPress Multisite 及大多...。
  • Rank Math SEO – AI SEO Tools to Dominate SEO Rankings 》Rank Math SEO – WordPress 最佳 SEO 外掛, 第一款使用人工智慧 (AI) 的 WordPress SEO 外掛 🦾, ★★★★★, SEO 是任何網站最穩定的流量來源。我們創建了 Rank M...。
  • All in One SEO – Powerful SEO Plugin to Boost SEO Rankings & Increase Traffic 》assic Editor, so you don't even need to leave your WordPress dashboard to optimize your content., Here’s what another smart WordPress user ha...。
  • XML Sitemap Generator for Google 》使用這個外掛程式可以大大改善 SEO,產生特殊的 XML 網站地圖,幫助 Google、Bing、Yahoo 和 Ask.com 等搜索引擎更好地索引您的網站。, 有了這樣的網站地圖,...。
  • SpeedyCache – Cache, Optimization, Performance 》SpeedyCache 是一款 WordPress 外掛,能透過網頁快取、最小化檔案和檔案壓縮的方式,幫助您減少網站載入時間。, 您可以在 https://speedycache.com/docs 找到...。
  • SEOPress – On-site SEO 》最佳的 WordPress SEO 外掛程式,與所有網頁建構工具和佈景主題全部整合!, 現在增加了 AI 功能,自動產生 meta 標題和描述!, SEOPress 是一個強大的 WordPr...。
  • Broken Link Checker by AIOSEO – Easily Fix/Monitor Internal and External links 》總結:Broken Link Checker by AIOSEO 是一款必備的工具,可以確保您的網站上所有的內部和外部連結都能正常運作。快速檢查您的網站中的錯誤鏈接,並輕鬆修復...。
  • PS Auto Sitemap 》PS Auto Sitemap 是一個 WordPress 外掛,自動從您的 WordPress 網站生成網站地圖頁面。, 對於初學者來說,安裝非常容易;對於專家來說,定制也非常容易。您...。
  • Cloudflare 》這個外掛可以為您做些什麼, , 自動平台優化 (APO), 使用 Cloudflare 的自動平台優化 (APO) 外掛,可將您的 WordPress 網站加速達 300%。APO 讓 Cloudflare 可...。
  • The SEO Framework – Fast, Automated, Effortless. 》這是最快速且唯一符合 WordPress 和搜尋引擎規定的 SEO 外掛程式,功能完整。使用經過驗證的方式來優化您的網站的 SEO。這是一款乾淨、專注、可延伸、無限制...。
  • YARPP – Yet Another Related Posts Plugin 》WordPress 相關文章外掛, Yet Another Related Posts Plugin (YARPP) 是一個經過專業維護、高度自訂和功能豐富的外掛程式,可以顯示與當前文章相關的頁面、文...。
  • SEO Plugin by Squirrly SEO 》「Squirrly SEO 插件:#1 AI WordPress SEO 外掛程式」HTML描述, , Squirrly SEO 插件: AI WordPress SEO 插件, 解決您的 SEO 挑戰。, Squirrly 的使命是...。
  • SEO SIMPLE PACK 》“SEO SIMPLE PACK”是一款非常簡單的SEO外掛程式。, , 輸出基本的meta標籤,是SEO措施所必需的。, 可以對每個頁面類型進行設置。, 您也可以設置SN...。
  • Schema & Structured Data for WP & AMP 》d-data-for-wp.com/docs/article/how-many-schema-types-do-we-support/" rel="nofollow ugc">查看所有支援的類型,目前已支援超過35種類型,其中包括部落格...。

文章
Filter
Apply Filters
Mastodon