Install the svn via homebrew or from their website brew install svn Update the plugin cd /Users/raduh/Dropbox/hosts/devsite/wpenabledebug/svn2 svn co https://plugins.svn.wordpress.org/your-plugin/ cd your-plugin svn add trunk/* svn ci -m 'Adding first version of my plugin' svn cp trunk tags/2.0 svn ci -m "tagging version 2.0" useful tips: you can use to resolve conflicts svn update svn
ARCHIVE
wordpress
In your site right click on the background. And find the element that has the background property It might be body root element or might be a descendant of body. In this case it’s #ht-site-container-child You will also need the id of the page if you want to edit for only that current
Posted on March 15 2018 / in WordPress
muplugins_loaded registered_taxonomy registered_post_type plugins_loaded sanitize_comment_cookies setup_theme load_textdomain after_setup_theme auth_cookie_malformed auth_cookie_valid set_current_user **init** widgets_init register_sidebar wp_register_sidebar_widget wp_default_scripts wp_default_stypes admin_bar_init add_admin_bar_menus wp_loaded parse_request send_headers parse_query pre_get_posts posts_selection wp template_redirect get_header wp_head wp_enqueue_scripts wp_print_styles wp_print_scripts
assign Contributor role to the user you wish to allow this install User Role Editor plugin and activate for the pages you want to allow just that user to edit, make them author you can do this from Quick edit menu from the Pages menu in users , select your user, click Capabilities check edit_pages
We need to go to WordPress admin, select Settings > General Then, from the Language field, select any language
Posted on July 31 2017 / in PHP, PHP, Tips, Tutorials, WordPress, WordPress Plugins, WordPress Themes
Menu by itself is a taxonomy in the different knownhost wordpress plans. It means that you can find all menus in wp_terms table, by running following query: SELECT * FROM wp_terms AS t LEFT JOIN wp_term_taxonomy AS tt ON tt.term_id = t.term_id WHERE tt.taxonomy = 'nav_menu'; Menu item is custom post type in WP. They are
Google Fonts allows retrieving all of it’s fonts via their api. It’s in json format so once you decode it you can use it in your application. The process is simple, you just need to access your applications page, create an application and get an API key Then you can access this link https://www.googleapis.com/webfonts/v1/webfonts?key=YOUR-API-KEY
Recent Comments