Category: WordPress

  • WordPress: pagebar 2.54

    pagebar 2.54 removes a problem with the “Break comments into pages” setting which could not be deselected. Unfortunately I had to remove the “show all comments” feature since I have not found a different method to code this feature. Additionally there are two more fixes: Settings where not correctly inherited by multipagebar and commentbar. Commentbar…

  • Hello Dolly 2010

    Since 2 weeks there’s a voting on Digging into WordPress whether to keep the Hello Dolly plugin in the standard distribution or to chuck it out the house. One of the most heard reasons for the existence of Hello Dolly that it should be used as a pattern for novice plugin developers. In my mind…

  • WordPress: Überschriften mit Untertiteln

    In vielen Zeitungen ist es üblich, unter die eigentliche Überschrift noch einen Untertitel zu setzen, um den folgenden Titel näher zu erläutern: Durch diese Untertitel kann man den eigentlichen Titel etwas kreativer gestalten und anschließend erläutern. Leider bietet WordPress von Haus aus diese Funktion nicht an und so muss sie nachgerüstet werden. Als ersten Reflex…

  • WordPress: Überprüfen, ob ein Beitrag das more-Tag enthält

    Manchmal möchte man einen Beitrag abhängig davon gestalten, ob er ein <!–more–>-Tag enthält oder nicht. Leider verfügt WordPress nicht über eine Funktion, um diese Prüfung vorzunehmen. Befindet sich der Beitrag innerhalb des Loops, so kann man aber folgende Funktion benutzen: function hasMoreLink() { global $post; return strpos($post->post_content, ”); } (Bitte “nore” mit “more” ersetzen, konnte…

  • WordPress Plugins übersetzen

    Viele WordPress-Nutzer bevorzugen eine deutsche Oberfläche, weil sie der englischen Sprache nicht mächtig sind oder es einfach als angenehmer empfinden, sich mit ihrem Blogsystem in ihrer eigenen Muttersprache zu verständigen. Für das Basissystem von WordPress wird mit großem Enthusiasmus vom wordpress-deutschland.org-Team eine Übersetzung bereitgestellt. Viele Plugins allerdings nicht nur in englischer Sprache verfügbar, was nicht…

  • WordPress: Absprung im Plugin-Bereich v2.7

    [English version] Frank Bültge beschreibt in seinem Posting “WordPress Plugins bereichern“, wie man die Bedienungsfreundlichkeit seines Plugins steigern kann, indem man einen Link zu den Options-Seiten neben die Deaktivieren- und Bearbeiten-Links platziert. Mit Version 2.6 funktioniert das so: function addConfigureLink($links, $file) { static $this_plugin; if (!$this_plugin) { $this_plugin = plugin_basename(__FILE__); } if ($file == $this_plugin)…

  • Using Komodo’s calltips with WordPress

    Can you remember all the function parameters of the various WordPress API/actions and functions? Are you a regular visitor of the Codex for looking up the vaults of the zillion possibilities WordPress is giving you to code your plugins? Well this will never change, I’m afraid, but you can make your life much easier if…

  • WordPress Crazyhorse … no thanks!

    Today I took a look and the new proposal for the next WordPress release. And I don’t like it … at all! It looks like the first incarnation of Google Reader and they changed it for good reasons. (click to enlarge) The interface looks totally clumsy, like a design from 2006. The left sidebar takes…