WARNING! AUTOMATE BACKUP BEFORE AUTOMATE UPDATE-UPGRADE! While keeping WordPress including its plugins and themes up to date on a daily basis is a important thing to avoid beeing hacked and abused to spread malware, it must be said, that automating […]
as a wordpress blogger and maintainer of knowle bases, you probably come accross this problem… you have 3x posts of different quality about the same problem. and you want to redirect 2x posts of bad quality to the 1x of […]
While the “blocks” model makes sense for mobile layouts and contents – i found it pretty sluggish on the desktop for “quickly” updating this or that blog post and decided: i would like to have the old editor back – […]
By the amount of commentary SPAM i get on WordPress using Google’s ReCaptcha… it wonder if i shut just disable comments all together (kind of what Anti Spam Bee did… it was impossible for me to comment on my own […]
https://sourceforge.net/projects/wincachegrind/
There are legitimate crawlers out there from google, yahoo, yandex & co trying to update their RAM-held databases of news from your site (a sitemap.xml generated by google-xml-plugin can help there). But there are also evil mail-address-collecting bots that are […]
This is caused by this Plugin Black Studio TinyMCE Widget -> which is used by PageBuilder it adds a nasty <p> in front and back of everything you enter… <p>[masterslider id=”15″]</p><h1 style=”text-align… unless you uncheck this:
DOES NOT WORK WITH WOOCOMMERCE-SHOP!!!! -> if you need that look here. If you have woocommerce installed check out this: https://wordpress.org/plugins/wp-migrate-db/ (UNTESTED! PRO IS 90USD) If you do not have woocommerce installed, but SiteOrigin’s PageBuilder: All kinds of manual database […]
“Instead, you could export a copy of your database (as an .sql file) using phpMyAdmin or the command line, run a find and replace on it to update URLs and file paths, then import it into your local environment using phpMyAdmin […]
create new file: /wp-content/themes/yourtheme-child/master-slider.read.php [cc lang=”php” escaped=”true” width=”600″] [/cc]
[cc lang=”php” escaped=”true” width=”600″]
[cc lang=”php” escaped=”true” width=”600″]
the plan is effectively to simply include the content and title of an existing post. (everything is a post in the wordpress database) you will need to 1. create a page “nothing found” 2. click on “short-link” to get the […]
If you have seen Queries like those: SELECT * FROM wp_posts p LEFT OUTER JOIN wp_term_relationships r ON r.object_id = p.ID LEFT OUTER JOIN wp_term_taxonomy x ON x.term_taxonomy_id = r.term_taxonomy_id LEFT OUTER JOIN wp_terms t ON t.term_id = x.term_id WHERE […]
in theory it should work like that (untested!): [cc lang=”php” escaped=”true” width=”600″] /** * Validate the extra register fields. * * @param string $username Current username. * @param string $email Current email. * @param object $validation_errors WP_Error object. * * […]
This last section contains various suggestions regarding Plugin development. The code of a WordPress Plugin should follow the WordPress Coding Standards. Please consider the Inline Documentation Standards as well. All the functions in your Plugin need to have unique names […]
Links http://wordpress.stackexchange.com/questions/35931/how-can-i-edit-post-data-before-it-is-saved Source: http://codex.wordpress.org/Plugin_API/Hooks Plugin API/Filter Reference This article contains an extensive (but not 100% comprehensive) list of the filter hooks available for use in plugin development in Version 2.1 and above of WordPress. For more information: To learn more […]
i created a test-plugin that outputs all the variables & their content available to access for plugins: i picked some that could be interesting to wordpress plugin developers: interesting filters: “This filter runs in wp-admin when loading a post for […]
WordPress is FREE, isn’t it? Yeaaaah… almost. It is released unde the GPLv2 which makes it basically Open Source. 1. first of all there is hosted wordpress.com which sells “PRO” and “LIGHT” Versions of a hosted instance of a your-blog.wordpress.com. […]