現在我正在使用下面的插件-'shortcoder'來允許我使用單個帖子推送我的WordPress站點的整個首頁。 以下是我後在wordpress中分割通過'the_content()'得到的內容
[shortcode 1]
[shortcode 2]
[shortcode 3]
[shortcode 4]
[shortcode 5]
[shortcode 6]
眼下這些都是靜態的只包含HTML和JavaScript內容的結構。這篇文章使用'the_content()'模板標籤顯示在我的index.php上。
但是現在我將從我的其他帖子中提取一些動態內容來代替邏輯將在index.php文件中進行硬編碼的一些這些簡碼。對於eg.-
[shortcode 1] static
[shortcode 2] static
[shortcode 3] dynamic
[shortcode 4] static
[shortcode 5] dynamic
[shortcode 6] static
只是要清楚所有的靜態部分會通過短碼,但動態部分將在index.php文件被硬編碼。 但是,由於串行順序,這個邏輯正在變得混亂。
我想以某種方式將通過'the_content()'進入的內容分解爲適當的靜態部分。
對不起,但我希望有人能想出一個解決方案。