首先,先把第6行的字給改成自己的內容,然后,把內容貼到Functions.php文件中,上傳,刷新,就可以了!不想用的時候,就把它給去除掉吧。
1 2 3 4 5 6 7 8 9 10 |
add_action('register_form', 'register_message'); function register_message() { $html = ' <div style="margin:10px 0;border:1px solid #e5e5e5;padding:10px"> <p style="margin:5px 0;"> 歡迎注冊Wordpress每日短代碼 </p> </div>'; echo $html; } |