How to List and Show WordPress Posts That Comments and Pings Off (Not Allow)リストを表示する方法ワードプレスオフ(しない)を使えば、コメントやpingを投稿
WordPress blog publishing platform allows individual author to override global discussion setting and set whether to allow reader to post comment on the article, or whether to allow link notification (aka pingback and trackback) from other blogs at single post or page level.ワードプレスのブログを公開するプラットフォームを個々の著者のグローバルな議論の設定を上書きするかどうかは、読者は、次の資料に関するコメントを投稿できるように設定したり、リンクを通知するかどうか(別名ピングバックとトラックバック)を1つのポストまたはページレベルで他のブログから許可することができます。 The feature allows all new posts and pages to be created with comments and pings on, but can always be turned off on specific posts or pages when needed.この機能は、すべての新しい記事やページのコメントとピングで作成することができますが、常に特定の投稿やページ上で必要なときに電源をオフにすることができます。
When come to time to housekeeping, WordPress does not provide an easy way to list or show all posts or paged articles that has its comments and pings off.時間を家事に来るときは、ワードプレスのリストを表示したり、すべての投稿やコメントやpingをオフにしているページの記事を表示する簡単な方法は提供されません。 For blog administrators who want to see a list blog posts and articles that have forbid readers and visitors to leave comments, and stop other blogs to pingback or trackback, use the following trick to list out all posts and pages that are currently set to comment and pingback/trackback off.投稿者リストを表示し、コメントを残すことを禁じる読者や訪問者がブログの記事を表示するにはブログの管理者は、他のブログピングバックやトラックバックを停止するには、すべての投稿やページは、現在設定されているとコメントしてリストには、次のトリックを使ってくださいピングバック/トラックバックをオフにします。
Log on to the MySQL database that powers the WordPress blog, and then use the following SQL query statement to get all posts or pages that either comment is not allowed, pings (trackback and ping back) is not allowed or both. MySQLデータベースは、ワードプレスのブログの力し、 [すべての投稿のコメントを許可されていないか、またはいずれかのページを取得するには、次のSQLクエリステートメントを使用するにログオンすると、 pingを(トラックバック、 pingを実行戻る)許可されていないか、または両方。
SELECT * FROM `wp_posts` where `comment_status` <> ‘open’ or `ping_status` <> ‘open’; ' SELECT * FROM `wp_posts` where `comment_status` <> ‘open’ or `ping_status` <> ‘open’; ' SELECT * FROM `wp_posts` where `comment_status` <> ‘open’ or `ping_status` <> ‘open’;
Tip: To make the selection from database easier, it’s recommended to useヒント:データベースを容易にし、それを使用することをお勧めの選択を行うには phpMyAdmin phpMyAdminは or other GUI interface to MySQL DB. MySQLのDBをしたり、他のGUIインターフェイスです。
The query above will return all row (both posts and pages in WordPress) that has either “Allow Comments” or “Allow Pings” set to off (untick).上記のクエリ(両方の投稿をすべての行が返されます、そして、ワードプレスのページ)は、いずれか"としている"とコメントを許可するか" "オフに設定pingを許可する( untick ) 。 To return only articles where comments is not allowed, use only “comment_status”, or “ping_status” for articles that do not allow pingback and trackback.記事のコメントのみが許可されていませんが、 " comment_status使用" 、または許可されていませんが、記事を" ping_status "を返すにはピングバックとトラックバック。
Both comment_status and ping_status fields have only two easily understand values - open and closed. comment_statusとping_statusの両方のフィールドの値を簡単に2つだけを理解している-を開いて引けた。 Open means allow, which closed means disallowed.を開くと、どの手段を閉鎖できることを意味不可。 Once the result is displayed, the posts that have one or both of the criteria can be determined, and changed if required.一度、結果が表示されると、投稿は、いずれかまたは両方の条件を決定することができますし、必要に応じて変更されました。
IMPORTANT : This is a machine translated page which is provided "as is" without warranty. 重要 :これはマシンとして"保証なしにされている"提供されているページを翻訳しています。 Machine translation may be difficult to understand.機械翻訳を理解するのが難しい場合があります。 Please refer toを参照してください original English articleオリジナルの英語の記事 whenever possible.可能な場合。
Share and contribute or get technical support and help at共有して貢献するかを得る技術サポートと支援 My Digital Life Forums 私のデジタルライフフォーラム . 。
Related Articles関連記事
- 3 Column Relaxation WordPress Theme comments-paged.php for Paged-Comments WordPress Plugin 3列リラクゼーションワードプレステーマのコメントを、ページのpaged.php -コメントワードプレスプラグイン
- Reduce Server Load Using Akismet to Automatically Discard Spam Comments on Posts Older than A Monthサーバーの負荷を減らすのスパムのコメントを自動的に破棄アキスメットを使用して、月よりも古い投稿
- Integrate WordPress including Comments with bbPress Forum using bbSyncワードプレスbbPressフォーラムとのコメントを使用して統合を含むbbSync
- Moderate WordPress Blog Comments Via Moderator with Desktop Client適度なワードプレスのブログのコメントを介してモデレータのデスクトップクライアントと
- Show,List Out and Identify All Shared Files and Folders in Windows Vista表示、リストと、 Windows Vistaのすべての共有ファイルやフォルダを識別
- Paginating or Split WordPress Post or Page with NextPage in WordPress Not Working Paginatingまたはスプリットワードプレスの投稿やページにNextPageが、ワードプレスが機能しない
- Add and Insert to Put Google AdSense Ads Units Between Blog Posts in Blogger.comを追加し、ブログの間にGoogle AdSenseの広告ユニットを挿入するBlogger.comの投稿
- Move Blogger Inline Ads Between Posts to Inside Within Post Positionブロガーの間で移動するインライン広告の中に投稿する立場に投稿
- Comments and Comment Blocks in PHPコメントやコメントブロックPHPで
- List of Google Robots Googleのロボットのリスト
































