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 a WordPress Plugin

Posted on August 28, 2015September 24, 2017 by admin

WordPress is carefully designed so plugins we third party can easily customized it without editing the core files. Editing the core files is not recommended because if you do, you can no longer update the WordPress core or you will lose all the edits. The best way to edit the default functionality or add new…

Read more

Why Choose WordPress As Your Website CMS Platform

Posted on July 22, 2015September 24, 2017 by admin

There are diverse website platform emerging nowadays. For those new to websites, website platform is the one used to run and manage your website. Mostly, it has administrator section where the website owner can manage the website contents without the need to have knowledge in website programming. WordPress is one of the website platform that…

Read more

How to Add/Update Your Plugin Files on WordPress Repository

Posted on June 19, 2015July 3, 2019 by admin

This tutorial assumes that your plugin has been submitted and approved by WordPress . https://wordpress.org/plugins/add/ Download and install TortoiseSVN Create a folder on your pc, e.g. Documents -> WordPress_Repository -> My Plugin_Name Right click on the folder and click SVN Checkout On the pop up window (see screenshot above), enter the SVN repository path, click…

Read more

How To Create WordPress Child Theme

Posted on December 11, 2014September 24, 2017 by admin

Why Create Child Theme Oftentimes, we need to customize bought theme to suit with our requirements. But with doing so, we won’t be able to update the theme to it’s latest version or else the changes we made will be overwritten. The avoid this, instead of doing the changes to the theme, we will need…

Read more

How to add New Thumbnail Size in WordPress

Posted on August 23, 2013September 24, 2017 by admin

If you want to add new thumbnail size, just add the ff: if ( function_exists( ‘add_image_size’ ) ) { add_image_size( ‘my-thumb’, 220, 180, true ); //(cropped) }   to retrieve the image, simple call get_the_post_thumbnail(get_the_ID(), ‘my-thumb’); Note: You have to rebuild thumbnails of older images in the media. To do this, go to Media ->…

Read more

Hide a Post by Displaying the 404 Error Page

Posted on March 9, 2013September 24, 2017 by admin

Create a function which will check your condition. If the condition is met, set $wp_query->is_404 to true. Then call that function like add_action(‘template_redirect’, ‘functionName’); function functionName() { global $wp_query, $post; if (condition here) { $wp_query->is_404 = true; } } add_action(‘template_redirect’, ‘functionName’);    

Read more

How To Create Custom Post Type

Posted on December 1, 2012September 24, 2017 by admin

Create the ff. class, replace the class name and the private variable values and call it.

Read more

How To Create Closeable Admin Notice in WordPress Dashboard

Posted on November 4, 2012September 24, 2017 by admin

Create the function and echo the message.

Read more

How to Install WordPress Theme

Posted on November 2, 2012September 24, 2017 by admin

Have your theme ready. Login to wordpress dashboard. Go to Appearance -> Themes. Click Upload. Upload your theme (zip format) The theme is now activated.   Free WordPress Themes: http://wpshower.com/ http://smthemes.com/soundwaves/   Premium WordPress Themes: http://www.xthemers.com/ http://templatic.com/  

Read more

How To Create WordPress Themes

Posted on November 2, 2012September 24, 2017 by admin

Creating a wordpress theme is easy.             Free WordPress Themes: http://www.freewpthemes.net/ http://wpshower.com/themes/sight/

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

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