如何在wordpress中通过ajax加载帖子的自定义字段值

发布于 2024-11-10 16:15:50 字数 135 浏览 0 评论 0原文

我不是 php 程序员,对数据获取一无所知,但我正在尝试制作一个模板,通过 wordpress 中的 ajax 加载帖子的自定义字段值,我想使用 ajax 加载值的原因是因为这些字段包含大量文本和图像链接,因此如果预加载它们,将需要大量时间来加载整个页面。

I am not a php programer and don't know anything about data fetching, but i am trying to make a template that loads the custom field values of the post via ajax in wordpress the reason i would like to load the values using ajax is because those fields contain lot of texts and image links so if they preloaded it will take lots of time to load whole page.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

路弥 2024-11-17 16:15:50

我为你写了一个插件! 首先从下面的 URL 下载并安装 ajax-custom。激活插件后,在主题中任何需要这些 AJAX 加载的自定义字段的地方插入以下模板标签。不要忘记将 NAME OF THE FIELD 替换为您想要通过 AJAX 加载的自定义字段的实际名称。

<?php
if( function_exists( 'ac_placeholder' ) )
    ac_placeholder( 'NAME OF THE FIELD' );
?>

→下载ajax-custom


希望对您有帮助也许还有其他人。我将不胜感激。 :)

I wrote a plugin for you! First download and install ajax-custom from the URL below. When the plugin is activated, insert the following template tag in your theme everywhere you need these AJAX-loaded custom-fields. Don't forget to replace NAME OF THE FIELD with the actual name of the custom field you want to load via AJAX.

<?php
if( function_exists( 'ac_placeholder' ) )
    ac_placeholder( 'NAME OF THE FIELD' );
?>

→Download ajax-custom


I hope it helps you and maybe also someone else. I would appreciate a thumbs up. :)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文