previous_comments_link_attributes

過濾鉤子
apply_filters( 'previous_comments_link_attributes', '' )

previous_comments_link_attributes: 這是WordPress的一個過濾鉤子,允許你修改評論導航選單中的”先前評論”連結的HTML屬性。這個鉤子在”上一條評論”連結生成時被觸發,允許你新增或修改連結的屬性,如CSS類或目標屬性。

過濾上一個評論頁面連結的錨標記屬性。

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
return '<a href="' . esc_url( get_comments_pagenum_link( $prevpage ) ) . '" ' . apply_filters( 'previous_comments_link_attributes', '' ) . '>' . preg_replace( '/&([^#])(?![a-z]{1,8};)/i', '&$1', $label ) . '</a>';
return '<a href="' . esc_url( get_comments_pagenum_link( $prevpage ) ) . '" ' . apply_filters( 'previous_comments_link_attributes', '' ) . '>' . preg_replace( '/&([^#])(?![a-z]{1,8};)/i', '&$1', $label ) . '</a>';
return '<a href="' . esc_url( get_comments_pagenum_link( $prevpage ) ) . '" ' . apply_filters( 'previous_comments_link_attributes', '' ) . '>' . preg_replace( '/&([^#])(?![a-z]{1,8};)/i', '&$1', $label ) . '</a>';

常見問題

FAQs
檢視更多 >