WordPress pre-build slider

No, WordPress does not have a slider feature built in. It will be either a plugin or your theme that has added the slider. For modifying or adjusting your slider, please go to the support area for the plugin/theme you used. If you wish to develop your own, there are many, many tutorials out there … Read more

remove () from category number [closed]

This should make you good to go: $args = array( ‘hide_empty’ => FALSE, ‘title_li’=> __( ” ), ‘show_count’=> 1, ‘echo’ => 0 ); $links = wp_list_categories($args); $links = str_replace(‘</a> (‘, ‘</a> <span>’, $links); $links = str_replace(‘)’, ‘</span>’, $links); echo $links; The ( and ) were in the code. And if you only want to show … Read more

Ajax Contact form plugin [closed]

wp_register_script(‘ajcontact’, plugins_url(“/inc/ace.js”, __FILE__),array(‘jquery’)); wp_localize_script(‘ajcontact’, ‘MyAjax’, array( ‘ajaxurl’ => admin_url( ‘admin-ajax.php’ ) )); wp_enqueue_script(‘ajcontact’); And then in your ace.js do jQuery.post(MyAjax.ajaxurl, data, ….

How to create wordpress plugin support page? [closed]

You can use the plugin_action_links_ filter for that task: add_filter( ‘plugin_action_links_’ . plugin_basename(__FILE__), ‘add_support_link_wpse_220726’ ); function add_support_link_wpse_220726( $links ) { $links[] = ‘<a href=”http://example.com/support/” target=”_blank”>Support</a>’; return $links; } Note that you must also pass the plugin name (plugin_basename(__FILE__)) for it to work. That’s why take into consideration from where you will call it.

Hata!: SQLSTATE[HY000] [1045] Access denied for user 'divattrend_liink'@'localhost' (using password: YES)