[WordPress] 外掛分享: Shortcode Empty Paragraph Fix

首頁外掛目錄 › Shortcode Empty Paragraph Fix
900+
安裝啟用
★★★★
4.8/5 分(20 則評價)
3715 天前
最後更新
問題解決
WordPress 2.5+ v0.2 上架:2011-07-09

內容簡介

修復當短代碼嵌入已由 wpautop 過濾的內容塊中時的 已知問題。

給主題開發者的

如果你正在開發一個可以在市集上提供的主題,你最好將以下的代碼嵌入到你的 functions.php 中。這個代碼只過濾你定義的短代碼。否則你有可能會因為外掛程式過濾了一般的內容而被審核失敗。

function shortcode_empty_paragraph_fix( $content ) {

// define your shortcodes to filter, '' filters all shortcodes
$shortcodes = array( 'your_shortcode_1', 'your_shortcode_2' );

foreach ( $shortcodes as $shortcode ) {

$array = array (
'<p>[' . $shortcode => '[' .$shortcode,
'<p>[/' . $shortcode => '[/' .$shortcode,
$shortcode . ']</p>' => $shortcode . ']',
$shortcode . ']<br />' => $shortcode . ']'
);

$content = strtr( $content, $array );
}

return $content;
}

add_filter( 'the_content', 'shortcode_empty_paragraph_fix' );

另外一個在 Envato(ThemeForest)市集上被接受的解決方案來自bitfade。

外掛標籤

開發者團隊

⬇ 下載最新版 (v0.2) 或搜尋安裝

① 下載 ZIP → 後台「外掛 › 安裝外掛 › 上傳外掛」
② 後台搜尋「Shortcode Empty Paragraph Fix」→ 直接安裝(推薦)

原文外掛簡介

Fix known issues when shortcodes are embedded in a block of content that is filtered by wpautop.
for Theme Developers
If you are developing a theme to provide this on a marketplace, you better embed the following code in your functions.php. This code filters only the shortcodes you defined. Otherwise you risk a failed review because the code in the plugin filters content in general which may is not acceptet.
function shortcode_empty_paragraph_fix( $content ) {

// define your shortcodes to filter, '' filters all shortcodes
$shortcodes = array( 'your_shortcode_1', 'your_shortcode_2' );

foreach ( $shortcodes as $shortcode ) {

$array = array (
'

[' . $shortcode => '[' .$shortcode,
'

[/' . $shortcode => '[/' .$shortcode,
$shortcode . ']

' => $shortcode . ']',
$shortcode . ']
' => $shortcode . ']'
);

$content = strtr( $content, $array );
}

return $content;
}

add_filter( 'the_content', 'shortcode_empty_paragraph_fix' );

Another solution that is acceptet at the envato (themeforest) marketplace comes from bitfade.

延伸相關外掛

文章
Filter
Apply Filters
Mastodon