覚書です。
パスワードの文面
「この投稿はパスワードで保護されています。表示するにはパスワードを入力してください:」
これを別の文に変えたいときは
テーマ内のfunctions.phpに以下を追加。
<?php /*custom passwordfile*/
function my_password_form() {
return
‘<p>ここに表示させたい文章を書く<p>
<div id=”protectedForm”>
<form action=”‘ . get_option(‘siteurl’) . ‘/wp-pass.php” method=”post” class=”xxxxxx”>
<ul>
<li><input name=”post_password” type=”password” size=”24″ /></li>
<li><input type=”submit” name=”Submit” value=”‘ . esc_attr__(“読む”) . ‘” /></li>
</form>
</ul>
</div>’;
}
add_filter(‘the_password_form’, ‘my_password_form’);
?>
リスト形式でinlineにすることでinput要素を横並びにできる。
Styleはcssで。
参考サイト:http://tech.belinko.net/pw_design/
※ktai styleはプラグインフォルダのktai style-languageの中にあるpoファイルいじくるしかないみたい。つーかその方が私は早い。
コメント欄を閉じました