Split content by delimiter
-
Just a feature that could be needed by some users (including me):
It would be great to add a delimiter string the pages, and Page List plugin would display content only before that delimiter.
I’ve inserted some lines to the plugin in line 374:
/* modification: display only stuff before delimeter string */ $text_content_array = explode("<!-- break -->", $text_content); if ($text_content_array[0] != "") { $text_content = $text_content_array[0]; }
Then you just have to insert
<!-- break -->
into the listed page where you want.
The modification works for me well ??
- The topic ‘Split content by delimiter’ is closed to new replies.