text 从wordpress post editor console获取ACF名称列表

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了text 从wordpress post editor console获取ACF名称列表相关的知识,希望对你有一定的参考价值。

var names = [];
$('.acf-field').each(function(){
	$this = $(this);	
	$thistext= $this.attr('data-name');
	names.push( $thistext );
	
});

console.log("LIST START\n\n"+ names.join('\n')+"\n\nLIST END");

以上是关于text 从wordpress post editor console获取ACF名称列表的主要内容,如果未能解决你的问题,请参考以下文章

POSTed 数组保持它们的值

text 从wordpress post editor console获取ACF名称列表

wordpress自定义post类型的自定义列

带有upload_files true但edit_post false的Wordpress自定义用户角色,我如何删除和编辑媒体?

Wordpress:将内容添加到 edit.php

从 WordPress 帖子中获取有限的纯文本摘录?