改變註冊 WordPress 後通知密碼的方式

Author: Eric  //  Category: Free Teaching

00. 因為有些人使用的是免費空間而造成無法成功寄信 or 有些新註冊的使用者, 因種種的原因而收不到 WordPress 註冊後所寄送的密碼, 而造成雙方的損失。您損失了新的 Fans, 而新註冊的使用者折騰了一番, 卻還不能登入, 被拒之於門外。


Read more...

在文章標題添加圖片

Author: Eric  //  Category: Free Teaching

1. 如果想要讓圖片顯示在首頁的文章標題

  a. 打開 ./wp-content/themes/Your_Theme_Name/index.php
  b. 找到

<?php the_title(); ?> 

  c. 選擇下面任一種 code 加上

2. 如果想要讓圖片顯示在內文的文章標題

  a. 打開 ./wp-content/themes/Your_Theme_Name/single.php
  b. 找到

<?php the_title(); ?> 

  c. 選擇下面任一種 code 加上
Read more...

This theme is released under creative commons licence, all links in the footer should remain intact.

Author: Eric  //  Category: Free Teaching

00. 剛才要幫忙解決移除佈景側欄的問題就下載了對方使用的 interior-theme-10 風格, 一解壓縮並於後台啟用, 都還沒做任何修改, 結果 WordPress 前後台都出現下面那一段話。 "This theme is released under creative commons licence, all links in the footer should remain intact."
Read more...

利用 PHPMailer 透過 Gmail 的 SMTP 寄信

Author: Eric  //  Category: Free Teaching

01. 依據您的 PHP 版本來下載適合的版本 PHPMailer

// 下載解壓縮後把檔案放到跟下面範例程式同一層, 如果不同層的話請更改下面位置 require_once('./class.phpmailer.php');
// 上傳的話只要傳 class.pop3.php, class.smtp.php, class.phpmailer.php 即可, 其它檔案用不到。

eg : require_once('./class.phpmailer.php');
./mail/mail.php
./mail/class.pop3.php
./mail/class.smtp.php
./mail/class.phpmailer.php

02. 把下面的 code, 另存成 mail.php, 編碼請選 UTF-8, 可以讓信的 Title 正常顯示中文。 Read more...

Pages: Prev 1 2 3 4 5 6 7 8 9 Next