PATH:
home
/
letacommog
/
rdvenunclick.fr1
/
wp-content
/
plugins
/
ultimate-faqs
/
Shortcodes
<?php function UFAQ_Popular_FAQs_Block() { if(function_exists('render_block_core_block')){ wp_register_script( 'ewd-ufaq-blocks-js', plugins_url( '../blocks/ewd-ufaq-blocks.js', __FILE__ ), array( 'wp-blocks', 'wp-element', 'wp-components', 'wp-editor' ) ); wp_register_style( 'ewd-ufaq-blocks-css', plugins_url( '../blocks/ewd-ufaq-blocks.css', __FILE__ ), array( 'wp-edit-blocks' ), filemtime( plugin_dir_path( __FILE__ ) . '../blocks/ewd-ufaq-blocks.css' ) ); register_block_type( 'ultimate-faqs/ewd-ufaq-popular-faqs-block', array( 'attributes' => array( 'post_count' => array( 'type' => 'integer', ), ), 'editor_script' => 'ewd-ufaq-blocks-js', // The script name we gave in the wp_register_script() call. 'editor_style' => 'ewd-ufaq-blocks-css', 'render_callback' => 'Display_Popular_FAQs', ) ); } // Define our shortcode, too, using the same render function as the block. add_shortcode("popular-faqs", "Display_Popular_FAQs"); } add_action( 'init', 'UFAQ_Popular_FAQs_Block' ); function Display_Popular_FAQs($atts) { extract( shortcode_atts( array( 'no_comments' => "", 'post_count'=>5), $atts ) ); $ReturnString = do_shortcode("[ultimate-faqs post_count=".$post_count." no_comments='" . $no_comments . "' orderby='popular']"); return $ReturnString; }
[+]
..
[-] Display_Recent_FAQs.php
[edit]
[-] Display_Top_Rated_FAQs.php
[edit]
[-] DisplayFAQs.php
[edit]
[-] Display_FAQ_Search.php
[edit]
[-] SelectFAQ.php
[edit]
[-] SubmitFAQ.php
[edit]
[-] Display_Popular_FAQs.php
[edit]