Web Dev Tuts

/ Stuffs About Website Development /

Menu
  • Home
  • Wp Plugins
  • How To
  • FAQ
    • GIT
    • JQuery
    • PHP
    • WooCommerce
    • WordPress
  • Contact Us
Menu

Category: Wordpress

How to Create WordPress Widget

Posted on July 21, 2012September 24, 2017 by admin

Creating a wordpress widget can be simple or complex, it depends on what you want to achieve.

First create a widget class.

Read more

jQuery is not defined in WordPress 3.4

Posted on June 15, 2012September 24, 2017 by admin

When I installed WordPress 3.4, my plugins that uses jquery suddenly didn’t work. Here’s how I fixed it. Add these codes on your plugin. {code} add_action(‘wp_head’, ‘load_scripts’); // to load jquery on the font page add_action(‘admin_head’, ‘load_scripts’); // to load jquery on the admin page function load_scripts(){ wp_enqueue_script(‘jquery’); //other scripts } {/code}

Read more

Apply a Shortcode within a Shortcode

Posted on June 10, 2012September 24, 2017 by admin

Suppose that you have two shortcodes,

1. the [RED]content[/RED] – will change the color of the text to red.

1. the [DOTTED]content[/DOTTED] – will add dotted underline to the text.

Read more

Add Date Picker to WordPress

Posted on June 10, 2012September 24, 2017 by admin

To add date picker, specifically jQuery UI Datepicker to wordpress, may it be admin or front page, first add the download jquery.ui.datepicker.js.

Read more

Implementing Ajax in WordPress Themes and Plugins

Posted on June 8, 2012September 24, 2017 by admin

Ajax is very useful when you want to execute a php script within an html without the need to reload the page.

It is easy to implement this within wordpress.

First, create a php function for the actions that will be executed.

Read more
  • Previous
  • 1
  • 2
  • 3
  • 4

Recent Posts

  • How to add wp_editor Dynamically
  • How to Hide Certain Pages from Certain Users (WP Dashboard)
  • How to Set Up Gmail SMTP
  • How to Set Up Virtual Host in Localhost & Xampp
  • How to Determine the Current WordPress Version Used
  • AngularJs
  • CSS
  • For Me Only
  • geo location api
  • GIT
  • GoDaddy
  • Hosting
  • How To
  • Javascript
  • JQuery
  • Magento
  • My Notes
  • PHP
  • Private
  • Sass
  • WooCommerce
  • Wordpress
  • Xampp
© 2023 Web Dev Tuts | Powered by Minimalist Blog WordPress Theme