前言介紹
- 這款 WordPress 外掛「Odyno GoogleGroups」是 2012-10-22 上架。
- 目前有 100 個安裝啟用數。
- 上一次更新是 2017-01-03,距離現在已有 3043 天。超過一年沒更新,安裝要確認版本是否可用。以及後續維護問題!
- 外掛最低要求 WordPress 3.4.2 以上版本才可以安裝。
- 有 4 人給過評分。
- 還沒有人在論壇上發問,可能目前使用數不多,還沒有什麼大問題。
外掛協作開發者
odyno |
外掛標籤
embed | fusion | google | ggroups | google groups |
內容簡介
這個OdynoGoogleGroups 外掛能夠在 WordPress 上內嵌 Google Groups!你可以在你的文章或 WordPress 頁面上看到所有的討論。你所需要做的就是在頁面編輯器中添加簡碼!
範例
功能
擴充 API
在 WordPress 頁面或文章上內嵌「自訂網域」的 Google Groups
在 WordPress 頁面或文章上內嵌公開的 Google Groups 討論區
小工具會顯示最近的訊息。
簡單易用
要在頁面或文章上加入 gGroups,只需要在簡碼中更換「name-of-group」為你的群組名稱 [google-groups name=”my-group-name”]
要在側邊欄加入小工具,就到外觀-[小工具],再加入「Google Groups Widget」。
可擴充
你可以在你的外掛程式或「頁面模板」中使用它 (請參閱 Page Templates « WordPress Codex)。使用函數 do_odyno_google_groups(...) 或四個自訂動作!(參閱一個例子,請到外掛首頁 或插件管理區)
如何使用?
非常簡單!只需要三個步驟就能夠在你的頁面上加入群組討論區!
新增頁面
在文章編輯器中加入這個程式碼 [google_groups name=”name-of-groups”],只需更換「name-of-group」為你的群組名稱
完成!現在可以預覽了!
設定
如果你想要控制畫面,可以在簡碼中加入以下屬性。
id:唯一的群組識別碼(預設是隨機數字)
name:群組名稱(預設是隨機數字)
width:頁面寬度(預設為 100%)
height:頁面高度(預設為 800px)
domain:群組的網域名稱(預設是無)
showsearch:是否在討論區的頁面中顯示搜尋框(預設為false)
hideforumtitle:如果你不想顯示當前討論區的標題或說明文字,可以設成 false。(預設值為 true)
hidesubject:如果你不想在討論區頁面中顯示最後一則貼文的主題,可以將其設為false。(預設值為true)
showtabs:是否在頁面顯示切換頁面的標籤(例如切換到會員頁面)(預設為false)
對於設計師
如果你想要自訂風格,可以添加 css 和使用鉤子!
對於開發人員
你可以在你的外掛程式中使用 Odyno Google Groups!否則你可以在你目前使用的主題中使用它。根據 Codex,您可以使用「子主題」修改目前的主題。
使用新的「頁面模板」,或直接修改主題的 php 檔案。在這種情況下,你可以添加呼叫函數 do_odyno_google_groups(),你將擁有與簡碼相同的功能。
另外,您還可以在您的外掛程式或 function.php 中添加一個鉤子到其中的四個行動中,並運行自訂程式碼。允許的動作顯示在下面,所有動作具有 do_odyno_google_groups() 函式的相同參數:
pre_ogg_show 動作。在調用 do_odyno_google_groups() 函數之前呼叫。
post_ogg_show 動作。在調用 do_odyno_google_groups() 函數之後呼叫。
原文外掛簡介
The OdynoGoogleGroups embed the Google Groups on WordPress! You can see all discussion on your article or WordPress page. All you must do is to add a shortcode on your page editor!
Demo
features
API for the extensions
Embed your “custom domain” Google Group on WordPress page/post
Embed public Google Group forum on WordPress page/post
Widget with last messages of group.
It’s easy
To add gGroups on page/post add this shortcode,just swap “name-of-group” with your group name [google-groups name=”my-group-name”]
To add widgets into sidebar Go to Appearance -> Widgets -> Google Groups Widget
It’s opened to extensions
You can use it on your plugin or into “Page Template” (see Page Templates « WordPress Codex ) with the function do_odyno_google_groups(…) or with 4 custom actions!! (see one example on plugin Home Site or on plugin admin section)
How to use it?
It’s very easy! You can add the group forum on your page in only three steps!
Add page
Set follow code on post editor [google_groups name=”name-of-groups”] just swap “name-of-group” with your group name
And now.. that’s all… go to the preview!
Configure it
If you want to control the view, you can add these attributes on shortcode
id: unique id of groups (default is random number)
name: name of groups (default is random number)
width: the width of page (default is 100%)
height: the height of page (default is 800px)
domain: the name of domain of groups (default none)
showsearch: whether to show an embedded search box on destination forum pages. (default is false)
hideforumtitle: if you want to show the forum title and description, false if you don’t want to show the title or description (default is true)
hidesubject: if you want to hide the subject of the last post in My Forums view, false if you want to leave the subject visible (default is true)
showtabs: whether to show tabs for changing views (e.g., to the Members view), on destination forum pages (default is false)
For designers
If you want customize the style of view, you can add css and use the hook!!
For developer
You can use the Odyno Google Groups on your plugin! Otherwise you can use it on your current theme. In according to Codex, you can modify the current theme with “Child Themes « WordPress Codex”,
with a new “Page Templates « WordPress Codex” or simply modify directly the php file of theme. In any of this case you can add a invocation of function do_odyno_google_groups() and you will have same action of shortcode.
Also the parameters of function are the same of shortcode.
Otherwise on your plugin or on your function.php you can add one hook to one of 4 action and you can run your custom code.
The allowed action are show below and all action have the same parameter of do_odyno_google_groups() function:
pre_ogg_show action. It’s called before do_odyno_google_groups() function
post_ogg_show action. It’s called after do_odyno_google_groups() function
pre_ogg_shortcode action. It’s called before invocation of all shortcode [google_groups]
post_ogg_shortcode action. It’s called after invocation of all shortcode [google_groups]
Credits
Copyright 2012 Alessandro Staniscia (email : [email protected])
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License, version 2, as
published by the Free Software Foundation.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
各版本下載點
- 方法一:點下方版本號的連結下載 ZIP 檔案後,登入網站後台左側選單「外掛」的「安裝外掛」,然後選擇上方的「上傳外掛」,把下載回去的 ZIP 外掛打包檔案上傳上去安裝與啟用。
- 方法二:透過「安裝外掛」的畫面右方搜尋功能,搜尋外掛名稱「Odyno GoogleGroups」來進行安裝。
(建議使用方法二,確保安裝的版本符合當前運作的 WordPress 環境。
0.0.2 | 0.0.3 | 0.0.4 | 0.0.5 | 0.0.6 | 0.0.7 | 0.0.8 | 0.0.9 | trunk | 0.0.10 |
延伸相關外掛(你可能也想知道)
EmbedPress – PDF Embed, PDF 3D FlipBook, Instagram Social Feeds, Google Docs, Vimeo, Wistia, YouTube Videos, Maps & Upload PDF Documents 》EMBEDPRESS - 從150多個來源嵌入任何東西 - YouTube、Google文件、Drive、地圖、Vimeo、Wistia、Spotify、Boomplay、PDF、PPT等,並通過Elementor、Block Edi...。
iframe 》, 高級 iFrame Pro, iframe, 捐贈, GitHub, , [iframe src=”http://www.youtube.com/embed/oDlbBy9vfgI” width=”100%” height=̶...。
Advanced iFrame 》看起來您正在尋找一個 WordPress 外掛 - Advanced iFrame Pro。這個外掛可讓您使用 iframe 包含其他網頁到您的網站中,同時具有隱藏和修改元素、自動調整高度...。
Insert Pages 》Insert Pages 可讓您使用 Shortcode API,將任何 WordPress 內容(例如,頁面、文章、自訂文章類型)嵌入其他 WordPress 內容。它還包括一個小工具,可將頁面...。
Compact WP Audio Player 》Compact WordPress Audio Player 插件是一個基於 HTML5 + Flash 混合的 WordPress 外掛,可以透過使用 shortcode 在 WordPress 文章或頁面中嵌入 mp3 音頻文...。
Advanced Responsive Video Embedder for Rumble, Odysee, YouTube, Vimeo, Kick … 》這是最佳的 WordPress 影片外掛嗎?支援幾乎你所能想像的一切,同時保持易用性和簡單性。這很可能是你需要的唯一一個外掛,來處理 WordPress 網站上的影片嵌...。
Code Embed 》注意: WordPress 5.0 及以上版本的使用者請查看常見問題以了解如何在區塊編輯器中使用此外掛。, Code Embed 外掛允許您在文章中嵌入程式碼(JavaScript 和 H...。
PDF.js Viewer 》透過 Gutenberg 區塊或簡單的縮略語,將 Mozilla 的 PDF.js Viewer 整合到您的網頁或文章中。PDF.js 是一個用於在瀏覽器中顯示 PDF 頁面的 JavaScript 函式庫...。
Embed PDF Viewer 》透過oEmbed或以區塊的方式,將來自媒體庫或其他地方的PDF嵌入至object標籤或Google Doc Viewer當作備用選項。URL只需要是可以讓全球使用的連結即可。, 靈感來...。
PDF viewer for Elementor & Gutenberg 》「PDFjs Viewer for Elementor」外掛是一個強大的工具,可輕鬆將 PDF 檔案嵌入到您的 Elementor 頁面建構器頁面中。它專為 Elementor 設計,因此您可以輕鬆在...。
PDF Viewer 》PDF Viewer 是一個 WordPress 外掛,允許您在網站上嵌入 PDF 文件,無需使用 Flash 外掛程式,僅依賴 JavaScript 來運作。這將使您的網站符合 HTML5 標準。此...。
Jotform oEmbed 》使用 Jotform 的 oEmbed 外掛程式,現在您可以輕鬆地在部落格文章中加入網路表單。安裝此外掛程式後,WordPress 將會辨識 Jotform 表單的 URL,以方便地嵌入...。
Disable Embeds 》這個外掛的功能:, , 防止他人嵌入您的網站。, 防止您嵌入非白名單網站。, 禁用所有與此功能相關的 JavaScript。, 從新版區塊編輯器中移除 WordPress 嵌入區...。
Videojs HTML5 Player 》Video.js HTML5 Player 是一個支持桌面和移動裝置視頻播放的用戶友好的外掛。它讓你輕鬆嵌入自主託管的視頻文件或使用 Video.js 庫的外掛視頻文件。, , Video...。
File Manager for Google Drive – Integrate Google Drive with WordPress 》使用這款最佳且使用者友善的「Google Drive」WordPress外掛,讓您的Google Drive與WordPress完美整合,體驗順暢的使用體驗。, , 輕鬆地在您的網站上管理和分...。