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 <?php require_once ‚../../../wp-config.php‘; /* get properties of specific master-slider slider * * js to decode params: * var decodeFix = function(str) { var decoded = B64.decode(str); return decoded.slice(0, decoded.lastIndexOf("}") + 1) }; […]
<?php /** * Master Slider Database Class. * * @package MasterSlider * @author averta [averta.net] * @license LICENSE.txt * @link http://masterslider.com * @copyright Copyright © 2014 averta */ // no direct access allowed <- WTF! […]
<section class="no-results not-found"> <header class="page-header"> <h2 class="page-title"><?php _e( ‚Nothing Found‘, ‚residium‘ ); ?></h2> </header><!– .page-header –> <div class="page-content"> <?php $siteurl […]
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!): /** * Validate the extra register fields. * * @param string $username Current username. * @param string $email Current email. * @param […]
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. […]