Customize Consent Preferences

We use cookies to help you navigate efficiently and perform certain functions. You will find detailed information about all cookies under each consent category below.

The cookies that are categorized as "Necessary" are stored on your browser as they are essential for enabling the basic functionalities of the site. ... 

Always Active

Necessary cookies are required to enable the basic features of this site, such as providing secure log-in or adjusting your consent preferences. These cookies do not store any personally identifiable data.

No cookies to display.

Functional cookies help perform certain functionalities like sharing the content of the website on social media platforms, collecting feedback, and other third-party features.

No cookies to display.

Analytical cookies are used to understand how visitors interact with the website. These cookies help provide information on metrics such as the number of visitors, bounce rate, traffic source, etc.

No cookies to display.

Performance cookies are used to understand and analyze the key performance indexes of the website which helps in delivering a better user experience for the visitors.

No cookies to display.

Advertisement cookies are used to provide visitors with customized advertisements based on the pages you visited previously and to analyze the effectiveness of the ad campaigns.

No cookies to display.

WordPress Snippet

ワードプレスをカスタマイズしよう

WordPress 4.3のマークダウン風の記法

WordPress4.3では、マークダウン風の記法がビジュアルモードで使えるようになります。

利用するには、ちょっとしたコツも必要そうです。

番号なし、リスト表示

アスタリスクをまず入力します。 スペースを一つ入れると、アスタリスクが消えて、続けて文字を入力します。

ネストしたリストは、タブを入力すると 子リスト

  • リスト
    • 子リスト
    • 子リスト
  • 二回改行すると親リストに移動

番号なしリストは、asteriskの代わりに ― でも使える模様

番号付、リスト表示

  1. 1を入力 ピリオドを続けてスペースを一つ入力
    1. タブを押して、子リスト
  2. シフト+タブで親リスト

引用

>を入力して、続けてスペースで 引用

改行すると、引用になります

>を入力して、続けてスペースで 引用

見出し

##でh2 ###ならh3 文字を入力する前にスペース一個必要
改行すると見出しになります

マークダウン風の記法を削除する

function disable_mce_wptextpattern( $opt ) {
 
 if ( isset( $opt['plugins'] ) && $opt['plugins'] ) {
 $opt['plugins']= explode( ',', $opt['plugins'] );
 $opt['plugins']= array_diff( $opt['plugins'] , array( 'wptextpattern' ) );
 $opt['plugins']= implode( ',', $opt['plugins'] );
 }
 
 return $opt;
}
 
add_filter( 'tiny_mce_before_init', 'disable_mce_wptextpattern' );

Formatting Shortcuts in WordPress 4.3

[emulsion_relate_posts]