Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
more-tag の後に続くコンテンツのみを表示する可能性はありますか? 特別な jQuery または php 関数を使用して機能する可能性はありますか? 手伝ってくれてありがとう
これを試して:
<?php $contentFull=get_the_content(); $contentSplit=explode("<!-more->",$contentFull); $beforeMore=$contentSplit[0]; for ($i=1; $i<count($contentSplit); $i++) { $afterMore.=$contentSplit[$i]; } ?>
編集1:
投稿に複数のタグを追加しても、$afterMore 変数には投稿の残りの部分が含まれます。