wordpress 網站變更字型匯總

wordpress 網站變更字型匯總

wordpress 更改字體: 改成微軟正黑體 body{font-family: arial,“Microsoft JhengHei”,“微軟正黑體“,sans-serif !important;}     在 Customer CSS裡面貼上以下:   @font-face { /*圓體*/  font-family: ‘cwTeXYen’;  font-style: normal;  font-weight: 500;  src:...

防止網站被盜圖程式碼

在Head部加入以下代碼: <script> jQuery( document ).ready(function($) { $(‘#main-content img’).bind(‘contextmenu’, function(e) { alert(“本站圖像均受版權保護,請勿任意轉載盜用!”); e.preventDefault(); }); });...

修改DIVI temperate Blog主題呈現為新聞模式

從修改頁面進入 進入修改CSS   .post-content { display: none; 以上為將“ Show Excerpt ” 內容拿掉   .et_pb_post { border-bottom: solid 1px #aaa; margin-bottom: 5px; padding-bottom:5px } 以上為修改各欄位的上下邊距。 h2.entry-title {padding-bottom: 0px !important; float: left; } 以上為將meta改為右邊顯示...

wordpress 修改Comment英文為中文

從外觀進去修改主題編輯器: <?php if ( post_password_required() ) : ?> <p class=”nocomments container”><?php esc_html_e( ‘This post is password protected. Enter the password to view comments.’, ‘Divi’ ); ?></p> <?php return; endif; ?> <!– You can...