Tag: development

  • Best Practice for Multilanguage WordPress Content? New Plugin!

    Best Practice for Multilanguage WordPress Content? New Plugin!

    Since the beginning of WordPress the desire to publish the content in different languages is huge. But the topic can quickly become complex, because not only the rendering of content in the form of text in different languages ​​is an issue, we also have to take care of the meta data for content, for images…

  • Separate Logic From Output

    Separate Logic From Output

    Once HTML is defined within a function for output, the HTML will be separated from the logic! In this case the function is defined twice. A function contains only logic and values ​​are returned only as return. The second function will contain HTML, test logic, loops or hooks and outputs values ​​as echo. Ok, the…

  • Adding Custom Fields to WordPress User Profile

    Adding Custom Fields to WordPress User Profile

    The user profile of WordPress can be fairly easily adapted to add your own values​​. So you can add the necessary fields according to your requirements. Here is how you do it, we add a field for the address and the content will be stored in the database. Various hooks in WordPress make sure that…

  • Register Settings on WordPress Multisite

    Register Settings on WordPress Multisite

    The use of WordPress for several blogs in the network can be useful to simplify several steps and is becoming increasingly popular. Whether you want the classical scenarios of blog hosting service or like to create multilingual websites or other ideas. Therefore, it is also important for plugin developers to use the functions and to…

  • Easier Plugin Development by Moving Plugin Directory

    Easier Plugin Development by Moving Plugin Directory

    If you’re a experienced programmer you’re testing your programs not only with the latest version of WordPress but also with some older versions since there are many dated installations. So you have several versions installed on your development server and want to test your newly created code with every single version.

  • unserialize() Error at Offset… Different solutions

    unserialize() Error at Offset… Different solutions

    The problem is not always obvious, for example the error message in relation to the function unserialize(). If you look around the net to help you find countless search and few answers, because usually the problem lies in the source, in the passed value. But not always you can control it, especially in debugging helpers…