How to Disable or Hide WordPress.com Automattic Stats Plugin Smiley Icon WordPress.comオートマティックの統計情報を無効にする方法、または非表示にするプラグインのアイコンスマイリー
WordPress.com Stats plugin for self-hosted WordPress blog (aka Automattic Stats plugin) is a good and free web visitors statistics tracker for WordPress blogging platform.自衛のための統計情報WordPress.com -ワードプレスのプラグイン(別名オートマティック分析プラグイン)のブログホスティングプラットフォームワードプレスのブログのために良いと無料のウェブ訪問者の統計情報を追跡している。 The WordPress.com Status plugin provides the most popular metrics, stats and information that a blogger wants to track in a clear and concise interface. WordPress.comステータスは、最も人気のあるプラグインの統計情報、統計情報とは、ブロガーを明確かつ簡潔なインターフェイスで追跡するために欲しい情報を提供します。
However, after activating and implementing WordPress Stats plugin, a small smiley face icon will be displayed at the bottom of the page.しかし、統計情報の活性化、そして、ワードプレスプラグインは、小さなスマイルマークのアイコンを実装した後には、ページの下部に表示されます。 The smiley face, although tiny in size, may affect the overall look and feel of the blog, or causing confusion among visitors about the image that appears oddly at the bottom.顔のスマイリーが、サイズが小さいと、全体的な外観に影響を与える可能性がありますし、ブログ、または混乱の原因は、奇妙下部に表示されている画像については、来場者の感じている。
Luckily, it’s possible to hide the smiley face added by the WordPress.com Automattic Stats plugin, by using the following CSS hack.幸い、それはスマイルマークを非表示にすることが可能だWordPress.comオートマティック分析プラグインによっては、次のCSSハックを使用している。
To hide the smiley face of WordPress.com Stats plugin, add the following CSS code to the WordPress blog’s stylesheet (style.css):は、ワードプレスのブログのスタイルシート( style.css )には、次のCSSコードを追加WordPress.com統計情報プラグインのスマイルマークを非表示にするには:
img#wpstats{width:0px;height:0px;overflow:hidden}
Alternatively, add the following JavaScript code into the WordPress footer.php after wp_footer() declaration:また、 wp_footer ( )宣言:後のワードプレスfooter.phpには、次のJavaScriptコードを追加します。
<script type=”text/javascript”> <script type="text/javascript">
var e = document.getElementById(”wpstats”); Varのメール= ( " " ) wpstats document.getElementById ;
e.style.width = “0px”; e.style.width = " 0px " ;
e.style.height= “0px”; e.style.height = " 0px " ;
e.style.overflow = “hidden”; e.style.overflow = " "隠された;
</script> < /スクリプト>
Note that the image is required for proper stats gathering and traffic tracking.そのイメージを適切な統計情報を収集し、トラフィックを追跡するために必要とされています。 Anything such as applying “display:none” to the image will cause the image not to be loaded by the browser and will break the stats.このようなイメージには、画像ではなく原因となります"と表示:なし"を適用すると何がロードされると、ブラウザによっては、統計情報をブレークされます。
One consent of using the CSS or JavaScript above is the usage of hidden overflow style, which may be treated as a hidden text or hidden link by search engines especially Google that may gives penalty to such implementation that may be perceived as untrustworthy since it presents information to search engines differently than to visitors.は、 CSSやJavaScriptを使用して、上記の1つの同意は、検索エンジン、特にGoogleが、非表示のテキストや隠しリンクとしては、信頼できない場合がありますので、情報のプレゼントとして認識されることがありますそのような実装にペナルティを与える治療されることがあります隠しオーバーフロースタイルの使用状況です異なるエンジンで検索して訪問者にも。
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関連記事
- Permanently Disable AdSense-Deluxe WordPress Plugin Reward Plugin Author Option永久-デラックスワードプレスプラグインを無効にAdSenseのプラグインの作者オプション報酬
- Caption Disabler WordPress Plugin to Disable and Remove Captions FunctionalityキャプションDisablerワードプレスプラグインを無効にしてキャプションを削除する機能に
- Tag Managing Thing Plugin for WordPress 2.3 or Above遊星からの物体タグ管理プラグインワードプレス2.3またはそれ以上の
- Technorati Incoming Links Plugin for WordPress Technoratiの被リンクワードプレスのプラグイン
- 3 Column Relaxation WordPress Theme comments-paged.php for Paged-Comments WordPress Plugin 3列リラクゼーションワードプレステーマのコメントを、ページのpaged.php -コメントワードプレスプラグイン
- Using Invisible Counter with Official StatCounter Plugin for WordPress公式StatCounterが、ワードプレスのプラグインを使用して見えざるカウンタ
- StatTraq - Wordpress Plugin for Site Statistic and Traffic Counter StatTraq -ワードプレスプラグインサイトの統計情報とトラフィックのカウンタを
- WLWManifest Disabler Plugin to Remove XLM Link in WordPress Blog HeaderワードプレスのブログのヘッダーにWLWManifest Disablerプラグインを削除XLMリンク
- Automatically Update WordPress to Latest Version with Automatic Upgrade Plugin (WPAU)最新バージョンの自動アップグレードを自動的に更新ワードプレスのプラグイン( WPAU )とする
- WordPress Plugin: Display Google Analytics and FeedBurner Reports Statistics from Site Adminワードプレスプラグイン: Google AnalyticsとFeedburnerのレポートを表示するサイトから統計情報を管理
































