正在檢視 2 個帖子:1-2 (共 2 個帖子)
-
作者帖子
-
預設的是文字形式的,但其實完全可以讓它更可愛點兒。
還沒調整完,暫時也不打算使用,因為感覺簡單點兒好,不過還是很不錯的,可以留著備用。
具體方法空了再寫吧,暫時貼上程式碼。
/** * bbPress - replace topic edit links with Font Awesome icons */ function bbp_topic_icon_admin_link( $links ) { $links['edit'] = bbp_get_topic_edit_link( array( 'edit_text' => '<i class="fa fa-edit" title="'. __( ' 編輯', 'wds-tutorial-example' ) .'"> 編輯</i><span class="screen-reader-text">'. __( 'Edit', 'wds-tutorial-example' ) .'</span>' ) ); $links['close'] = bbp_get_topic_close_link( array( 'close_text' => '<i class="fa fa-toggle-on" title="'. __( ' 關閉', 'wds-tutorial-example' ) .'"> 關閉</i><span class="screen-reader-text">'. __( 'Close', 'wds-tutorial-example' ) .'</span>', 'open_text' => '<i class="fa fa-toggle-off" title="'. __( ' 開放', 'wds-tutorial-example' ) .'"> 開放</i><span class="screen-reader-text">'. __( 'Open', 'wds-tutorial-example' ) .'</span>', ) ); $links['stick'] = bbp_get_topic_stick_link( array( 'stick_text' => '<i class="fa fa-bookmark" title="'. __( ' 置頂', 'wds-tutorial-example' ) .'"> 置頂</i><span class="screen-reader-text">'. __( 'Stick', 'wds-tutorial-example' ) .'</span>', 'unstick_text' => '<i class="fa fa-bookmark-o" title="'. __( ' 取消置頂', 'wds-tutorial-example' ) .'"> 取消置頂</i><span class="screen-reader-text">'. __( 'Unstick', 'wds-tutorial-example' ) .'</span>', 'super_text' => '<i class="fa fa-asterisk" title="'. __( ' 超級置頂', 'wds-tutorial-example' ) .'"></i> 超級置頂<span class="screen-reader-text">'. __( 'Stick to front', 'wds-tutorial-example' ) .'</span>', ) ); $links['merge'] = bbp_get_topic_merge_link( array( 'merge_text' => '<i class="fa fa-exchange" title="'. __( ' 合併', 'wds-tutorial-example' ) .'"> 合併</i><span class="screen-reader-text">'. __( 'Merge', 'wds-tutorial-example' ) .'</span>' ) ); $links['trash'] = bbp_get_topic_trash_link( array( 'trash_text' => '<i class="fa fa-trash" title="'. __( ' 移至回收站', 'wds-tutorial-example' ) .'"> 移至回收站</i><span class="screen-reader-text">Trash</span>', 'restore_text' => '<i class="fa fa-restore" title="'. __( ' 還原話題', 'wds-tutorial-example' ) .'"> 還原話題</i><span class="screen-reader-text">'. __( 'Restore', 'wds-tutorial-example' ) .'</span>', 'delete_text' => '<i class="fa fa-times" title="'. __( ' 刪除話題', 'wds-tutorial-example' ) .'"> 刪除話題</i><span class="screen-reader-text">'. __( 'Delete', 'wds-tutorial-example' ) .'</span>', ) ); $links['spam'] = bbp_get_topic_spam_link( array( 'spam_text' => '<i class="fa fa-exclamation" title="'. __( ' 垃圾評論', 'wds-tutorial-example' ) .'"> 垃圾評論</i><span class="screen-reader-text">'. __( 'Spam', 'wds-tutorial-example' ) .'</span>', 'unspam_text' => '<i class="fa fa-exclamation-circle" title="'. __( ' 不是垃圾評論', 'wds-tutorial-example' ) .'"> 不是垃圾評論</i><span class="screen-reader-text">'. __( 'Unspam', 'wds-tutorial-example' ) .'</span>', ) ); $links['reply'] = bbp_get_topic_reply_link( array( 'reply_text' => '<i class="fa fa-reply" title="'. __( ' 回覆', 'wds-tutorial-example' ) .'"> 回覆</i><span class="screen-reader-text">'. __( 'Reply', 'wds-tutorial-example' ) .'</span>' ) ); return $links; } add_filter( 'bbp_topic_admin_links', 'bbp_topic_icon_admin_link' ); /** * bbPress - replace reply links with Font Awesome icons */ function bbp_reply_icon_admin_links( $links ) { $links['edit'] = bbp_get_reply_edit_link( array( 'edit_text' => '<i class="fa fa-edit" title="'. __( 'Edit topic', 'wds-tutorial-example' ) .'"></i><span class="screen-reader-text">'. __( 'Edit', 'wds-tutorial-example' ) .'</span>' ) ); $links['move'] = bbp_get_reply_move_link( array( 'split_text' => '<i class="fa fa-arrow-circle-right" title="'. __( 'Move topic', 'wds-tutorial-example' ) .'"></i><span class="screen-reader-text">'. __( 'Move', 'wds-tutorial-example' ) .'</span>' ) ); $links['split'] = bbp_get_topic_split_link( array( 'split_text' => '<i class="fa fa-code-fork" title="'. __( 'Split topic', 'wds-tutorial-example' ) .'"></i><span class="screen-reader-text">'. __( 'Split', 'wds-tutorial-example' ) .'</span>' ) ); $links['trash'] = bbp_get_reply_trash_link( array( 'trash_text' => '<i class="fa fa-trash" title="'. __( 'Trash topic', 'wds-tutorial-example' ) .'"></i><span class="screen-reader-text">'. __( 'Trash', 'wds-tutorial-example' ) .'</span>', 'restore_text' => '<i class="fa fa-restore" title="'. __( 'Restore topic', 'wds-tutorial-example' ) .'"></i><span class="screen-reader-text">'. __( 'Restore', 'wds-tutorial-example' ) .'</span>', 'delete_text' => '<i class="fa fa-times" title="'. __( 'Delete topic', 'wds-tutorial-example' ) .'"></i><span class="screen-reader-text">'. __( 'Delete', 'wds-tutorial-example' ) .'</span>', ) ); $links['spam'] = bbp_get_reply_spam_link( array( 'spam_text' => '<i class="fa fa-exclamation" title="'. __( 'Mark as spam', 'wds-tutorial-example' ) .'"></i><span class="screen-reader-text">'. __( 'Spam', 'wds-tutorial-example' ) .'</span>', 'unspam_text' => '<i class="fa fa-exclamation-circle" title="'. __( 'Unmark as spam', 'wds-tutorial-example' ) .'"></i><span class="screen-reader-text">'. __( 'Unspam', 'wds-tutorial-example' ) .'</span>', ) ); return $links; } add_filter( 'bbp_reply_admin_links', 'bbp_reply_icon_admin_links' );
此回覆已被標記為私有,🔒 僅樓主及管理員可見。 -
作者帖子
正在檢視 2 個帖子:1-2 (共 2 個帖子)
- 哎呀,回覆話題必需登入。