2016-05-08 3 views
0

私はWordpressの上のブログを作成していると私は人々がここのような記事のビットを見ることができ、会員のシステムを持ちたい:隠す部品

http://www.lemonde.fr/entreprises/article/2016/05/08/la-lente-revolution-du-car-longue-distance_4915637_1656994.html

http://www.revmed.ch/rms/2016/RMS-N-513/Comprendre-les-immunodeficiences-primaires-utilite-d-un-registre

の下にあるボックスにログインまたはサインアップします。

like here the box, total access is hidden, buy the article or subscribe.

私は少し、すべてのページを非表示にする多くの答えが見つかりましたがありません。 すべてのソリューション?前もって感謝します。

答えて

0

一つの可能​​な解決策は、wp_trim_words()を使用することです。簡単な例では、テーマfunctions.phpに以下を追加します。

add_filter('the_content', 'trim_page'); 
function trim_page($content) 
{ 
    return wp_trim_words($content, 50, '...'); 
} 
+0

大丈夫私は、感謝の@masaを試してみましょう – Antoine