April 21, 2014February 24, 2020How to, Wordpress How to Add Custom Fields to User Profile – WordPress Super easy way to add custom fields to the user profile on WordPress. This will take you 3 seconds to implement. […]
December 22, 2013August 5, 2014How to, Wordpress Use WordPress Media Uploader in your Custom Plugin This will make is Basicly what I did was adding this to my plugin: function test_admin_scripts() { wp_enqueue_script(‘media-upload’); wp_enqueue_script(‘thickbox’); wp_enqueue_script(‘jquery’); } function […]
October 31, 2013February 24, 2020Linux, Wordpress Error when updating plugins by FTP “Unable to locate WordPress Content directory (wp-content).” SOLVED Error when updating plugins by FTP “Unable to locate WordPress Content directory (wp-content).” SOLVED if(is_admin()) { add_filter(‘filesystem_method’, create_function(‘$a’, ‘return “direct”;’ )); define( […]
June 27, 2012June 27, 2012PHP, Wordpress WordPress Shortcode to Display the Loop Just paste this into your theme’s function file.