Diff
checker
文本
文本
圖像
文檔
Excel
文件夾
Legal
Enterprise
桌面版
定價
登入
下載 Diffchecker 桌面版
比較文本
尋找兩個文字檔案之間的差異
工具
歷史
即時編輯器
摺疊未變更行
關閉換行
檢視
拆分
統一
比對精度
智能
單詞
字符
語法突出顯示
選擇語法
忽略
文字轉換
前往第一個差異
編輯輸入
Diffchecker Desktop
執行Diffchecker最安全的方式。取得Diffchecker桌面應用程式:您的差異永遠不會離開您的電腦!
取得桌面版
Untitled diff
建立於
11 年前
差異永不過期
清除
匯出
分享
解釋
2 刪除
行
總計
刪除
字符
總計
刪除
要繼續使用此功能,請升級到
Diff
checker
Pro
查看價格
51 行
全部複製
4 新增
行
總計
新增
字符
總計
新增
要繼續使用此功能,請升級到
Diff
checker
Pro
查看價格
51 行
全部複製
// Remove Genesis Author Box and load our own
// Remove Genesis Author Box and load our own
複製
已複製
複製
已複製
remove_action( 'genesis_after_
post
', 'genesis_do_author_box_single'
);
remove_action( 'genesis_after_
entry
', 'genesis_do_author_box_single'
, 8
);
add_action( 'genesis_after_
post
', 'be_author_box'
);
add_action( 'genesis_after_
entry
', 'be_author_box'
, 8
);
/**
/**
* Load Author Boxes
* Load Author Boxes
*
*
* @author Bill Erickson
* @author Bill Erickson
* @link http://www.billerickson.net/wordpress-post-multiple-authors/
* @link http://www.billerickson.net/wordpress-post-multiple-authors/
*/
*/
function be_author_box() {
function be_author_box() {
if( !is_single() )
if( !is_single() )
return;
return;
if( function_exists( 'get_coauthors' ) ) {
if( function_exists( 'get_coauthors' ) ) {
$authors = get_coauthors();
$authors = get_coauthors();
foreach( $authors as $author )
foreach( $authors as $author )
be_do_author_box( $author->data->ID );
be_do_author_box( $author->data->ID );
} else {
} else {
be_do_author_box( get_the_author_ID() );
be_do_author_box( get_the_author_ID() );
}
}
}
}
/**
/**
* Display Author Box
* Display Author Box
* Modified from Genesis to use an ID
* Modified from Genesis to use an ID
*
*
* @author Bill Erickson
* @author Bill Erickson
* @link http://www.billerickson.net/wordpress-post-multiple-authors/
* @link http://www.billerickson.net/wordpress-post-multiple-authors/
*/
*/
function be_do_author_box( $id = false ) {
function be_do_author_box( $id = false ) {
if( ! $id )
if( ! $id )
return;
return;
$authordata = get_userdata( $id );
$authordata = get_userdata( $id );
$gravatar_size = apply_filters( 'genesis_author_box_gravatar_size', 70, $context );
$gravatar_size = apply_filters( 'genesis_author_box_gravatar_size', 70, $context );
$gravatar = get_avatar( get_the_author_meta( 'email', $id ), $gravatar_size );
$gravatar = get_avatar( get_the_author_meta( 'email', $id ), $gravatar_size );
$title = apply_filters( 'genesis_author_box_title', sprintf( '<strong>%s %s</strong>', __( 'About', 'genesis' ), get_the_author_meta( 'display_name', $id ) ), $context );
$title = apply_filters( 'genesis_author_box_title', sprintf( '<strong>%s %s</strong>', __( 'About', 'genesis' ), get_the_author_meta( 'display_name', $id ) ), $context );
$description = wpautop( get_the_author_meta( 'description', $id ) );
$description = wpautop( get_the_author_meta( 'description', $id ) );
/** The author box markup, contextual */
/** The author box markup, contextual */
$pattern = $context == 'single' ? '<div class="author-box"><div>%s %s<br />%s</div></div><!-- end .authorbox-->' : '<div class="author-box">%s<h1>%s</h1><div>%s</div></div><!-- end .authorbox-->';
$pattern = $context == 'single' ? '<div class="author-box"><div>%s %s<br />%s</div></div><!-- end .authorbox-->' : '<div class="author-box">%s<h1>%s</h1><div>%s</div></div><!-- end .authorbox-->';
echo apply_filters( 'genesis_author_box', sprintf( $pattern, $gravatar, $title, $description ), $context, $pattern, $gravatar, $title, $description );
echo apply_filters( 'genesis_author_box', sprintf( $pattern, $gravatar, $title, $description ), $context, $pattern, $gravatar, $title, $description );
}
}
已保存差異
原始文本
開啟檔案
// Remove Genesis Author Box and load our own remove_action( 'genesis_after_post', 'genesis_do_author_box_single' ); add_action( 'genesis_after_post', 'be_author_box' ); /** * Load Author Boxes * * @author Bill Erickson * @link http://www.billerickson.net/wordpress-post-multiple-authors/ */ function be_author_box() { if( !is_single() ) return; if( function_exists( 'get_coauthors' ) ) { $authors = get_coauthors(); foreach( $authors as $author ) be_do_author_box( $author->data->ID ); } else { be_do_author_box( get_the_author_ID() ); } } /** * Display Author Box * Modified from Genesis to use an ID * * @author Bill Erickson * @link http://www.billerickson.net/wordpress-post-multiple-authors/ */ function be_do_author_box( $id = false ) { if( ! $id ) return; $authordata = get_userdata( $id ); $gravatar_size = apply_filters( 'genesis_author_box_gravatar_size', 70, $context ); $gravatar = get_avatar( get_the_author_meta( 'email', $id ), $gravatar_size ); $title = apply_filters( 'genesis_author_box_title', sprintf( '<strong>%s %s</strong>', __( 'About', 'genesis' ), get_the_author_meta( 'display_name', $id ) ), $context ); $description = wpautop( get_the_author_meta( 'description', $id ) ); /** The author box markup, contextual */ $pattern = $context == 'single' ? '<div class="author-box"><div>%s %s<br />%s</div></div><!-- end .authorbox-->' : '<div class="author-box">%s<h1>%s</h1><div>%s</div></div><!-- end .authorbox-->'; echo apply_filters( 'genesis_author_box', sprintf( $pattern, $gravatar, $title, $description ), $context, $pattern, $gravatar, $title, $description ); }
更改後文本
開啟檔案
// Remove Genesis Author Box and load our own remove_action( 'genesis_after_entry', 'genesis_do_author_box_single', 8 ); add_action( 'genesis_after_entry', 'be_author_box', 8 ); /** * Load Author Boxes * * @author Bill Erickson * @link http://www.billerickson.net/wordpress-post-multiple-authors/ */ function be_author_box() { if( !is_single() ) return; if( function_exists( 'get_coauthors' ) ) { $authors = get_coauthors(); foreach( $authors as $author ) be_do_author_box( $author->data->ID ); } else { be_do_author_box( get_the_author_ID() ); } } /** * Display Author Box * Modified from Genesis to use an ID * * @author Bill Erickson * @link http://www.billerickson.net/wordpress-post-multiple-authors/ */ function be_do_author_box( $id = false ) { if( ! $id ) return; $authordata = get_userdata( $id ); $gravatar_size = apply_filters( 'genesis_author_box_gravatar_size', 70, $context ); $gravatar = get_avatar( get_the_author_meta( 'email', $id ), $gravatar_size ); $title = apply_filters( 'genesis_author_box_title', sprintf( '<strong>%s %s</strong>', __( 'About', 'genesis' ), get_the_author_meta( 'display_name', $id ) ), $context ); $description = wpautop( get_the_author_meta( 'description', $id ) ); /** The author box markup, contextual */ $pattern = $context == 'single' ? '<div class="author-box"><div>%s %s<br />%s</div></div><!-- end .authorbox-->' : '<div class="author-box">%s<h1>%s</h1><div>%s</div></div><!-- end .authorbox-->'; echo apply_filters( 'genesis_author_box', sprintf( $pattern, $gravatar, $title, $description ), $context, $pattern, $gravatar, $title, $description ); }
尋找差異