Skip to main content

Home/ WordPress Beginners/ Group items tagged Top

Rss Feed Group items tagged

Toshiro Shimura

WordPressウィジェット一覧 - 0 views

  •  
    WordPress CodexのThird Party Widgetsより、 2007.5.18現在、177個 * 30Boxes (http://ottodestruct.com/blog/2006/04/28/30boxes-widget/) - 30Boxes カレンダーのエベントを表示(要PHP 5) * A Yahoo SiteExplorer Widget (http://www.utheguru.com/yahoo-sidebar-link-badge-widget-for-wordpress/) - Yahoo Site Explorer Badge をウィジェット化 - デモ:Yahoo Badge Widget Demo * About Me Widget (http://www.samdevol.com/about-me-widget-for-wordpress/) - 画像などを加えた'About Me'(自分について)を表示 * Active Discussions (http://jayandrewallen.com/active-discussions-sidebar-plug-in-for-wordpress-20/) - コメントの多い投稿を表示 * Ad Rotator (http://kpumuk.info/wordpress/wordpress-widgets-ad-rotator/) - <!-more->で区切った複数のHTMLコードを順番に表示 * AddThis Sidebar Wiget (http://foolip.org/blog/2007/05/06/addthis-sidebar-widget/) - フィード購読とソーシャルブックマークのボタン * Adsense Widget for WordPress (http://www.mikesmullin.com/2006/04/01/adsense-widget-wordpress-sidebar/) - Adsenseの色、サイズ、h2をコントロール * Apple Trailer (http://www.sosuechtig.de/wordpress-widgets/) - apple.com から映画の予告編をランダムに表示 * Around This Date In The Past (http://www.junyent.org/blog/arxius/2006/05/20/around-this-date-in-the-past-wordpress-widget/) - x 年前の今日の投稿記事を表示 * Associative Dictionary (http://dirkie.nu/2006/05/01/associative-dictionary-widget/) - 個人辞書を作成表示 * AvFuel (http://blog.dannyevarts.net/2006/06/28/avfuel-my-first-useful-wordpress-widget/) - 最新の航空燃料の値段を表示 * Battlefield 2 Stats (http://www.viper007bond.com/wordpress-plugins/battlefield-2-stats/) - Battlefield 2 プロファイルを表示 * BDP RSS Agregator (http://wordpress.org/support/topic/67364?replies=1) - BDP RSS Agregator plugin (http://www.ozpolitics.inf
Siraj Mahmood

Top 10 Real Estate WordPress Themes - KnowledgeIDea - 0 views

  •  
    Top 10 real estate WordPress themes. Now buy and sell property is easy with real estate WordPress templates. WordPress best real estate themes collection.
Clara James

Top WordPress Image Gallery Plugins for 2011 - 1 views

  •  
    Image galleries enable you to conveniently view images on your blog and manipulate them. Here are some really hot ones! NextGen - allows you to create multiple slideshows on your site. Photo Space - adds any image attached to a post or a page to the gallery.
designsave

Top Free Business &amp; Corporate WordPress Themes - Designsave.com - 0 views

  •  
    A listed top free premium Quality WordPress themes for your Business & Corporate needs. Download free Business Corporate WordPress Themes.
chimpdesign

Top 10 Real Estate WordPress Theme - 0 views

  •  
    If you have a real estate business want to build your Real Estate Business Website then you are on right spot, I have a comprehensive collection of WordPress themes for property rental, house renting, buy and sale property and real estate business. All themes are fully featured with modern technology of Google map integration, advance...
samonjur

Keywodrs is very important for every website. - 0 views

  •  
    Simply how much targeted traffic are you currently shedding mainly because an individual never have identified several unexpected yet potent keywords and phrases? Choosing the clear keywords and phrases to your internet pages is easy. And also obtaining connected, high-demand and also low-supply keywords and phrases which can be potent to your web site just isn't too much once you begin making use of Wordtracker. Yet think about people keywords and phrases which can be actually unexpected? Think about keywords and phrases you'll by no means consider, yet which may have the particular prospective to operate a vehicle thousands of fresh visitors to your internet site?Pleasant to be able to Wordtracker Search term Study AccountsBeing a Wordtracker client, you are going to right away acquire totally free usage of the most notable 1, 000 keywords and phrases used throughout the key engines like google : equally short-term and also long-term.And also for a few internet marketers, which is adequate.Nonetheless it just isn't adequate should you have identified the actual prospective regarding working together with one of the most searched-for or perhaps freshly growing keywords and phrases on the web.Significant web marketers and also SEARCH ENGINE MARKETING specialists which are seeking development final results consider Wordtracker's Search term Study Record alternatives: from your Top, 000, entirely for the Leading 20 thousand phrases.Just how these kinds of accounts supply development final resultsCheck our own Search term Study Accounts throughout. Try to find hugely well-known, or perhaps freshly growing phrases and words that might be utilized to make huge amounts regarding fresh targeted traffic.How can this kind of perform? You're not trying to find well-known keywords and phrases that may deliver folks inside from the "front door" of your distinct web site. You are interested in undiscovered jewels that will deliver a large amount regarding targeted traffic inside
Toshiro Shimura

WordPressのリッチエディタにCSSを適用する | Tech de Go - 0 views

  • WordPressのリッチエディタにはTinyMCEが使われている。リッチエディタを使うのはソースコードなどタグを記事本文として流し込むときだけなので、あまり気にしなかったが、使っている人から、なぜ明朝体のでかいフォントなのかと言われた。皆さんはどうしているのだろうか。ここではリッチエディタにオリジナルのCSSを適用する方法を調べてみた。 リッチエディタはiframeで実現されているため、擬似的にhtml-head-bodyの構造を取っている。ここに適用されているCSSは以下の3つだが、このうち”wordpress.css”が変更の対象となる。 wp-includes/js/tinymce/themes/advanced/css/editor_content.css wp-includes/js/tinymce/plugins/wordpress/wordpress.css wp-includes/js/tinymce/plugins/spellchecker/css/content.css 変更するにはまず適用するCSSを作成する。その際に、変更するwordpress.cssを当該CSSで@includeする。 フォントの指定を含め、一般的な設定をするのなら以下のようなCSSになるはず。使用しているテーマのCSSから必要な部分だけ持ってくればよい。
  • CSS /* rich_editor.css ver 0.1 by Junon */ @import url('http://www.techdego.com/wp-includes/js/tinymce/plugins/wordpress/wordpress.css'); body { margin: 0; padding: 0 10px; background-color: #fff; color:#000; font-family: Arial, Helvetica, Verdana, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", Osaka, "メイリオ", Meiryo, "MS Pゴシック", sans-serif; font-size: 0.8em; line-height: 1.4; } p a:link { text-decoration: none; color: #186FD0; border-bottom: 1px dotted #186FD0; } p a:visited, p a:active { text-decoration: none; color: #666; border-bottom: 1px dotted #186FD0; } p a:hover { text-decoration: none; color: #186FD0; border-bottom: 1px solid #186FD0; } p { margin: 1em 0; } li { margin-top: 1em; } ul li { list-style: square; } ul li ul { margin-bottom: 0.3em; } ul li ul li { list-style: circle; } a:link img, a:hover img, a:visited img, a:active img{ border: none; } .alignleft { float: left; } .alignright { float: right; } .clearer { clear: both; } code, pre { font-family: "courier new", courier, monospace; } 上記をTinyMCEに適用すればよいのだが、今回は自分のテーマに付随させてテーマを外せばエディタのCSSも変わるようにする。
  • 上記のCSS(ここではrich_editor.cssとする)をテーマのstyle.cssと同じ階層に保存する(背景画像をテーマと共有するため)。 テーマのfunctions.php(無ければ新規に作成)の最後に以下のコードを記述する。 PHP function replace_editor_css($css_file) { $css_file = get_option('siteurl') . '/wp-content/themes/**theme-name**/rich_editor.css'; return $css_file; } add_filter('mce_css', 'replace_editor_css'); ちなみに、上記の部分を別のphpファイルにして、pluginsフォルダに入れるとプラグインになる。テーマを変えてもCSSを適用したいならプラグイン化をお勧めする。
designsave

Top 10 Best Clean Personal Blog WordPress Themes 2016 - Designsave.com - 0 views

  •  
    Best WordPress Blog themes. Here is a list some of the best Clean Personal Blog WordPress Themes 2016 for corporate, personal, blogger.
1 - 8 of 8
Showing 20 items per page