?AlkantarClanX12
| Current Path : /home/r/a/n/rankinh/lynkandco/wp-content/plugins/nexteuv-shop/ |
| Current File : /home/r/a/n/rankinh/lynkandco/wp-content/plugins/nexteuv-shop/functions.php |
<?php
# Elementor template list
if(!function_exists('nexteuv_elementor_page_list')) {
function nexteuv_elementor_page_list(){
$pagelist = get_posts(array(
'post_type' => 'elementor_library',
'showposts' => 999,
));
$options[''] = esc_html__('None', 'nexteuv-shop');
if ( ! empty( $pagelist ) && ! is_wp_error( $pagelist ) ){
foreach ( $pagelist as $post ) {
$options[ $post->ID ] = esc_html( $post->post_title );
}
return $options;
}
}
}