I have some translations of Bible in Turkish language. But, they are as of books. (Matthew, Mark, Luke, John… ) I uploaded them into a website which is being managed by a wordpress software.
http://www.incil.biz/incil-1
http://www.incil.biz/incil-2
I want to make a Bible search engine. But, these are very long texts.
How can I create a Bible search engine via WordPress?
Is there a way to split the books into verses?
If I understand your question correctly, the problem is the target for the search results. Just finding the matching page is not good enough when the visitor has to scan a long document after entering the page.
You could split the long texts into smaller pieces, in WordPress: posts.
An idea:
On the main page print the content of all child pages, so your readers can read the whole book at once. Pseudo-code, not tested:
An alternative approach:
Keep the texts together, and add a parameter
highlight
with the search phrase to the search result links, like this:On the found page, inspect the
$_GET['highlight']
and mark all matching words with a custom element:But that would still require a lot of scrolling.