WordPress Kayıt Sayfasında Özel Mesaj Görüntüleme
WordPress kayıt sayfasında kayıt olmak isteyenlere özel mesaj vermek, uyarı notu düşmek ya da anlaşma metni yayınlamak istiyorsanız aşağıdaki kodu temanızın function.php dosyasında diğer kod bloglarını bozmadan yapıştırmanız yeterli.
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;">
Joining this site you agree to the following terms. Do no harm!
</p>
</div>';
echo $html;
}
Bu resimdeki gibi bir not düşebilirsiniz.
