要在WordPress列表分页中添加一个跳转到指定页码的输入框,你可以使用以下步骤:

  1. 打开你的WordPress网站的后台管理界面。

    WordPress列表分页添加跳转指定页码输入框

  2. 在左侧导航栏中选择 "外观",然后选择 "编辑主题" 或 "自定义"(根据你的主题而定)。

  3. 在编辑主题或自定义选项中,找到你正在使用的主题的模板文件。通常,列表分页位于 archive.phpindex.phppage.php 中,具体取决于你的主题。

  4. 找到分页代码的位置。这通常是使用 wp_link_pages() 函数来生成的。你需要在这个函数的周围添加一些自定义代码。

  5. 在分页代码的周围添加以下代码来创建一个输入框和跳转按钮:

<div class="custompagination">    <span class="paginationtext">跳转到:</span>    <input type="text" id="custompaginationinput" class="paginationinput" />    <input type="button" value="跳转" class="paginationbutton" onclick="customPagination()" /></div><script>    function customPagination() {        var input = document.getElementById('custompaginationinput').value;        if (input !== '') {            var maxPage = <?php echo $wp_query>max_num_pages; ?>;            if (input <= maxPage && input >= 1) {                var url = "<?php echo get_permalink(); ?>page/"  input  "/";                window.location.href = url;            }        }    }</script>

这段代码会在页面上添加一个输入框和一个跳转按钮,允许用户输入页码并跳转到相应的页面。

  1. 保存你的模板文件并刷新你的网站,以查看效果。

请注意,这只是一个示例代码片段,具体的实现方式可能因你的主题和需求而异。你可能需要根据你的网站的具体情况进行自定义调整。此外,为了确保代码的安全性,你还应该考虑添加适当的输入验证和安全性检查。