提问者:小点点

如何为Wordpress设置长格式文本项目符号列表的格式


我在WordPress中遇到了一系列长格式项目符号列表的格式问题。

下面是我的代码示例:

<ol>
<li><strong>Example Header 1</strong>
<p>Example paragraph 1.</p>
<p>Example paragraph 2</p>
<p>Example paragraph 3:</p>
<ul>
<li><strong>Example Subheader 1</strong><br />
Example bullet text 1</li>
<li><strong>Example Subheader 2</strong><br />
Example bullet text 2</li>
<li><strong>Example Subheader 3</strong><br />
Example bullet text 3.</li>
</ul>
</li>
<p>Example paragraph at the end of the list</p>
<li><strong>Example Header 2</strong>
<p>Example paragraph 4</p>
</li>
</ul>

我看到的最常见的问题是:

>

  • WordPress(Gutenberg和classic editor)删除示例段落1和4周围的p标记,然后在内容后面添加一个没有文本的空p标记。然后,它将在示例段落2和3周围留下相同的p标记。

    我的嵌入式无序列表将被视为嵌入式有序列表

    排序的列表将从#1开始,例如头2,当我希望它是列表项#2时。

    我的高级目标是,我希望所有的内容在标题和副标题下一致地对齐,具有一致和标准的换行符大小,并且使有序列表中的行项具有正确的编号。

    我应该如何构造我的代码(或Wordpress)来解决我看到的问题并实现我想要的目标。

    提前道谢!


  • 共1个答案

    匿名用户

    我想你想要这样的东西:

    null

    <ol>
      <li><strong>Example Header 1</strong>
        <p>Example paragraph 1.</p>
        <p>Example paragraph 2</p>
        <p>Example paragraph 3:</p>
        <ul>
          <li><strong>Example Subheader 1</strong><br /> Example bullet text 1</li>
          <li><strong>Example Subheader 2</strong><br /> Example bullet text 2</li>
          <li><strong>Example Subheader 3</strong><br /> Example bullet text 3.</li>
        </ul>
      </li>
     </ol>
      <p>Example paragraph at the end of the list</p>
      <li><strong>Example Header 2</strong>
        <p>Example paragraph 4</p>
      </li>