0

これについていくつかの投稿がありますが、解決策がうまくいきません..

私はあなたの助けに感謝します..

hier はコード @ my single.php です

<?php echo '<div class="thecontent">' . apply_filters('the_content', get_the_content()) . '</div>';

これを試してみましたが、コードを置き換える方法がわかりませんか?

echo preg_replace('/<img[^>]+\>/i', '', get_the_content(), 1);
4

1 に答える 1

-1

CSSを使用して、特定の投稿の注目の画像を非表示にすることもできます

お気に入り、

#(here your id of your post)img {
display : none;
}

また

  #(here your id of your post)img {
    visibility : hidden;
    }
于 2013-09-16T12:23:49.860 に答える