前言介紹
- 這款 WordPress 外掛「MetaMax」是 2016-09-22 上架。
- 目前有 10 個安裝啟用數。
- 上一次更新是 2016-10-19,距離現在已有 3119 天。超過一年沒更新,安裝要確認版本是否可用。以及後續維護問題!
- 外掛最低要求 WordPress 4.6 以上版本才可以安裝。
- 尚未有人給過這款外掛評分。
- 還沒有人在論壇上發問,可能目前使用數不多,還沒有什麼大問題。
外掛協作開發者
eoutvik | heintore | andersdosen |
外掛標籤
seo | google | noindex | meta title | meta description |
內容簡介
MetaMax是一個輕量和超簡單的Yoast SEO替代品。它沒有像Yoast SEO所提供的進階GUI或內容分析,而是專注於良好的標準和減少噪音,一鍵即可開始。MetaMax的性能也比Yoast SEO更好,並且不會對您的頁面載入產生相同的影響。但是當然你總是會緩存你的網站,對吧?由Appex熱情製作!
標籤
SEO,Yoast,社交,共享,meta,meta tags,facebook,twitter,google,description
篩選器
Appex_Metamax :: FILTER_META_OG_TITLE
Appex_Metamax :: FILTER_META_DESCRIPTION
Appex_Metamax :: FILTER_META_OG_DESCRIPTION
Appex_Metamax :: FILTER_META_OG_LOCALE
Appex_Metamax :: FILTER_META_OG_SITE_NAME
Appex_Metamax :: FILTER_META_OG_URL
Appex_Metamax :: FILTER_META_OG_VIDEO
Appex_Metamax :: FILTER_META_OG_TYPE
Appex_Metamax :: FILTER_META_PROFILE_FIRST_NAME
Appex_Metamax :: FILTER_META_PROFILE_LAST_NAME
Appex_Metamax :: FILTER_META_TWITTER_CARD
Appex_Metamax :: FILTER_META_FB_APP_ID
上述篩選器將期望返回一個字串
範例
if (class_exists('Appex_Metamax')) {
add_filter (Appex_Metamax :: FILTER_META_OG_TITLE,function($ content){
//如果不在主頁面上,則覆蓋標題
if(!is_home()){
$ content ='My new fancy title';
}
返回$content;
});
}
Appex_Metamax :: FILTER_META_OG_IMAGE
Appex_Metamax :: FILTER_META_DEFAULT_OG_IMAGE
圖像篩選器將期望一個格式為array(array(url,width,height))的數組
範例
//默認圖像回退過濾器
if(class_exists('Appex_Metamax')){
add_filter(Appex_Metamax :: FILTER_META_DEFAULT_OG_IMAGE,function($ images){
$ images [] = wp_get_attachment_image_src($ attachment_id,在“large”);
返回$圖片;
});
}
//添加圖像
if(class_exists('Appex_Metamax')){
add_filter(Appex_Metamax :: FILTER_META_OG_IMAGE,function($ images){
$ images [] = array(
'http://example.com/images/waycoolimage.jpg',
1200,
800
);
if(is_archive()){
$ images [] = wp_get_attachment_image_src($ attachment_id,在“large”);
}
返回$圖片;
});
}
原文外掛簡介
MetaMax is meant to be a lightweight and super simple replacement for Yoast SEO. He does not have the advanced GUI or content analysis that Yoast SEO offers, but instead focuses on good standards and less noise — all ready to go in one click. MetaMax is also more performant than Yoast SEO, and will not have the same impact on your pageload. But of course you always cache your site anyways, right? Made with passion by Appex!
Tags
SEO, Yoast, social, sharing, meta, meta tags, facebook, twitter, google, description
Filters
Appex_Metamax::FILTER_META_OG_TITLE
Appex_Metamax::FILTER_META_DESCRIPTION
Appex_Metamax::FILTER_META_OG_DESCRIPTION
Appex_Metamax::FILTER_META_OG_LOCALE
Appex_Metamax::FILTER_META_OG_SITE_NAME
Appex_Metamax::FILTER_META_OG_URL
Appex_Metamax::FILTER_META_OG_VIDEO
Appex_Metamax::FILTER_META_OG_TYPE
Appex_Metamax::FILTER_META_PROFILE_FIRST_NAME
Appex_Metamax::FILTER_META_PROFILE_LAST_NAME
Appex_Metamax::FILTER_META_TWITTER_CARD
Appex_Metamax::FILTER_META_FB_APP_ID
The filters above will expect a string in return
Example
if ( class_exists( 'Appex_Metamax' ) ) {
add_filter( Appex_Metamax::FILTER_META_OG_TITLE, function( $content ) {
// Override title if not on home page
if( !is_home() ) {
$content = 'My new fancy title';
}
return $content;
});
}
Appex_Metamax::FILTER_META_OG_IMAGE
Appex_Metamax::FILTER_META_DEFAULT_OG_IMAGE
The image filters will expect an array of arrays with url, width and height in the following format: array(array(url, width, height));
Example
// Default image fallback filter
if ( class_exists( 'Appex_Metamax' ) ) {
add_filter( Appex_Metamax::FILTER_META_DEFAULT_OG_IMAGE, function( $images ) {
$images[] = wp_get_attachment_image_src( $attachment_id, 'large' );
return $images;
});
}
// Add images
if ( class_exists( 'Appex_Metamax' ) ) {
add_filter( Appex_Metamax::FILTER_META_OG_IMAGE, function( $images ) {
$images[] = array(
'http://example.com/images/waycoolimage.jpg',
1200,
800
);
if( is_archive() ) {
$images[] = wp_get_attachment_image_src( $attachment_id, 'large' );
}
return $images;
});
}
各版本下載點
- 方法一:點下方版本號的連結下載 ZIP 檔案後,登入網站後台左側選單「外掛」的「安裝外掛」,然後選擇上方的「上傳外掛」,把下載回去的 ZIP 外掛打包檔案上傳上去安裝與啟用。
- 方法二:透過「安裝外掛」的畫面右方搜尋功能,搜尋外掛名稱「MetaMax」來進行安裝。
(建議使用方法二,確保安裝的版本符合當前運作的 WordPress 環境。
延伸相關外掛(你可能也想知道)
Simple SEO 》, Nonce 安全性!, 自動產生 META 標籤。, 即插即用,無需設定。, 您可以覆蓋任何標題,設定任何 META 描述和關鍵字!, 支援 Google Analytics 4!, 支援 Goo...。
WP Smart SEO 》一個簡單的SEO外掛,可針對頁面、文章和分類生成以下內容:, , og:type, og:title, og:description, og:image, twitter:title, twitter:description, twitter...。
Amd 》Amd 是一個簡單的 WordPress 外掛,允許你新增和管理文章和頁面的meta描述和title標籤。, Amd 的主要功能包括:, , , 在文章和頁面編輯器中,提供title標籤和...。
SkySEOManager – Bulk SEO Editor 》, , ,
外掛總結:
,SkySEOManager是一個強大的批量SEO編輯器,幫助您有效管理網站的SEO元數據。從單...。
Bulk Meta Data Importer for Rank Math 》**總結:** Rank Math Bulk Meta Data Importer 是一個 WordPress 外掛,允許使用者上傳 CSV 檔案並使用 Rank Math SEO 外掛更新 URL 的 Meta Title 和 Meta ...。
dig Title 》**總結:**, 這款外掛讓你可以直接從 WordPress 編輯器中為每篇文章、頁面或自訂文章類型、封存頁面和分類添加 meta 標題。簡化該外掛功能可使你的 WordPress...。
SEO Ready 》當談到搜索引擎優化時,有很多要考慮的事情,以保持您的網站最新。此外掛的目的是幫助您處理 On-Page SEO 的技術方面,並提供圖形用戶界面來生成一組最常用的...。
RUSH Seo Tags 》這個外掛旨在修改網站頁面的標題,描述和標題 1。, 它基於頁面 URL 的檢查進行操作。要使用標題 1,需要使用特殊的快速代碼。, 各欄位的描述如下:, 1. u...。
Qe SEO Handyman 》** 描述 **, Qe SEO Handyman 是一款多功能插件,可大幅協助您的頁面優化。您可以識別缺少/重複的元標題或描述的頁面數量,甚至是已超過字符限制的頁面。您可...。