php 视觉作曲家-autocomplete.php

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 视觉作曲家-autocomplete.php相关的知识,希望对你有一定的参考价值。

<?php 

/**
 * Get all type posts
 *
 * @return void
 * @author alispx
 **/
function alispx_get_type_posts_data( $post_type = 'post' ) {

	$posts = get_posts( array(
		'posts_per_page' 	=> -1,
		'post_type'			=> $post_type,
	));

	$result = array();
	foreach ( $posts as $post )	{
		$result[] = array(
			'value' => $post->ID,
			'label' => $post->post_title,
		);
	}
	return $result;
}


add_action( 'vc_before_init', 'alispx_post_finder_integrateWithVC' );
function alispx_post_finder_integrateWithVC() {
   vc_map( array(
		'name' 					=> esc_html__( 'Alispx Post Finder', 'alispx' ),
		'base' 					=> 'alispx_post_finder',
		'class' 				=> 'alispx-ico',
		'icon' 					=> 'alispx-ico',
		'category' 				=> esc_html__( 'Features', 'alispx' ),
		'admin_enqueue_css' 	=> array( get_template_directory_uri . '/your-path/alispxvc.css' ),
		'description' 			=> esc_html__( 'Alispx Post Finder', 'alispx' ),
		'params' 				=> array(
			array(
				'type' 			=> 'autocomplete',
				'class' 		=> '',
				'heading' 		=> esc_html__( 'Post Name', 'alispx' ),
				'param_name' 	=> 'id',
				'settings'		=> array( 'values' => alispx_get_type_posts_data() ),
			),
		)
	) );
}

以上是关于php 视觉作曲家-autocomplete.php的主要内容,如果未能解决你的问题,请参考以下文章

php 视觉作曲家-autocomplete.php

如何整合视觉作曲家自定义wordpress主题

如何在 wordpress 视觉作曲家中搜索替换图像 url

在页面上呈现Visual Composer短代码

php 作曲家PHP

跳过作曲家 PHP 要求