セキュリティー上、個人ブログの投稿者名は非表示にしておいた方が良い…
という事で、今までは「Show and Hide Author」というプラグインを使っていましたが、プラグインなしでも簡単にできそうだったので、やってみました。
投稿記事の投稿者名を非表示に
1. 管理画面 → 外観 → テーマエディター
2. 投稿者名は、「function.php」の中で、下記のように設定されている。
function twentyseventeen_posted_on() { // Get the author name; wrap it in a link. $byline = sprintf( _x( 'by %s', 'post
author', 'twentyseventeen' ), '' .
twentyseventeen_time_link() . ' '; // WPCS: XSS OK. }
' ); // Finally, let's write all of this to the page. echo '
この投稿者名等を引き出すコードを削除する。
方法は、子テーマの「functions.php」に下記コード追加する ▼
/* 投稿者名を非表示 */
function twentyseventeen_posted_on(){
echo '' . twentyseventeen_time_link() . '';
}
3. 更新
以上で実際に投稿者名が非表示になり、プラグインは削除しました。
Reference
WordPressのtwenty seventeenで投稿者名だけを削除したかったのでググったメモ。 functions.phpにて下記記述を追加する。 参考:twenty seventeenで投稿者 ...
Do you want to remove the author name from your WordPress posts? By default, WordPress does not have an option to publish articles without an author name. In this article, we will show you few different ways to remove author name from your WordPress posts. Method 1: Remove Author Name from WordPress Posts Using a Plugin This method is easier and recommended for all users. However, it may not work with all WordPress themes. First thing you need to do is install and activate the Show Hide Author plugin. For more details, see our step by step guide on how to install a WordPress plugin. Upon activation, you need to visit Plugins » Show/Hide Author page to configure plugin settings. The plugin automatically hides author name for all post types. If you want to display the author name for a specific post type, then you need to select it on this screen. Below the post types, you can also add custom URLs where you want to hide the author name. This plugin can hide author name in mos..
サポート » 使い方全般 » twenty seventeenで投稿者を非表示にするに…