找到数据的来源" the_content()"功能

时间:2016-04-12 12:33:31

标签: wordpress wordpress-plugin wordpress-theming custom-wordpress-pages

这可能看起来是一个普通的问题,虽然我被困在其中。我是wordpress的新手。我已经购买了一个wordpress主题,我试图按照自己的意愿编辑一些页面。现在我想编辑我已经开始编辑" single.php"的默认帖子页面。和" post-format.php"文件。我想知道从哪里或如何" the_content()"函数获取数据?

因为我希望删除页面的某些html部分,尽管html部分来自" the_content"功能。因此,如果不摆脱" the_content"我就无法删除该部分。功能。但我无法摆脱" the_content"函数,因为同样的函数也调用了一些重要的部分。

希望你们能帮忙!

1 个答案:

答案 0 :(得分:0)

从哪里

  1. 作为函数get_the_content()从数据库中检索帖子内容(通常在循环中使用)并在前端打印。
  2. 再次the_content()作为过滤器控制您展示帖子内容的方式。
  3. 如何

    WordPress API的简单回答。您需要了解WordPress Database_API才能深入理解。

    经常被

    使用
    wp-includes/plugin.php: apply_filters()
    wp-includes/post-template.php: get_the_content()
    wp-includes/post-template.php: the_content
    

    使用案例:(来自Codex

    • post_password_required()
    • 如果post_password_required()失败,则
    • get_the_password_form()
    • 处理标签时
    • wp_kses_no_null()。
    • balanceTags()
    • get_permalink()
    • global:$ id,$ post,$ more,$ page,$ pagesm,$ multipage,$ preview,$ pagenow

    <强>价:   - Filter the_content() | Functionthe_content()

    可选:离线WP Codex文档搜索/浏览器Windows / OSx