Embed YouTube Videos With iFrame in WordPress (Editor removes Tag Problem)
This damn WordPress visual editor removes always your YouTube video iFrame? Just install the TSL iframe unfilter plugin and the editor will leave your code untouched …
This damn WordPress visual editor removes always your YouTube video iFrame? Just install the TSL iframe unfilter plugin and the editor will leave your code untouched …
If you have already added a custom meta field to your wordpress posts with add_meta_box you probably want to query such posts in your template. You can do that with query_posts(), it supports the meta_key and meta_value attributes.
query_posts($query_string.'&meta_key=onStartpage&meta_value=1'); |
If you want add fields to the wordpress user profile then two hooks are important for you.
More …
Another quicktipp for wordpress plugin developers. With the shortcode API you can easily provide additional commands for wordpress authors …
Another quicktipp for wordpress theme developers.
If you want to exclude one or more categories from a page (startpage, category-page), you can call the query_posts function with negative category-ids …
<?php query_posts($query_string . '&cat=-1,-2,-3'); ?> <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> <!-- POST --> <?php endwhile; endif; ?> |
Seit dem es das AutoUpdate Feature gibt, frag ich mich warum man eigentlich nicht via sFTP (also FTP über SSH2) updaten kann. Ganz einfach: Weil die Option nicht angezeigt wird wenn die SSH2 PHP-Extension nicht installiert ist. Unter Debian kann man die Erweiterung mit folgendem Befehl installieren:
> apt-get install php5-ssh2
> /etc/init.d/apache2 restart
Der Schoysi hat mich darauf hingewiesen das dieses Paket nicht im offiziellen Debian Repository zu finden ist. Stimmt, ich hab in der sources.list folgendes eingetragen:
deb http://php53.dotdeb.org stable all
deb-src http://php53.dotdeb.org stable all
dotdeb.org erstellt inoffizielle Debian-Pakete für den LAMP-Stack:
http://www.dotdeb.org/2009/11/30/php-5-3-1-packages-for-debian-lenny-theyre-here/
Seit einer Woche ist die finale Version von WordPress 2.8 verfügbar. Die Entwickler haben an der Geschwindigkeit gearbeitet und 790 Bugs gefixed. Für Entwickler ist vorallem das neue Widget API interessant das die Entwicklung enorm vereinfacht (siehe Beispiele).
Da in letzter Zeit doch so einige Posts über Bücher, Musik, Medien usw. angefallen sind und ich gerne diese von den ganzen technischen Themen wie Programmierung, Hardware, Software usw. ein bissl trennen würde, hab ich jetzt mal einen TECH Channel eingerichtet. Alles andere wird unter dem Titel “Mixed Up” zusammengruppiert … mal schaun ob ich damit zufrieden bin.
Das Update auf 2.5RC-2 erfolgreich abgeschlossen, Zeitaufwand ca. 10 Min. davon ca. 8 Min. Suchen nach der aktuellen unstable Version. Diese Version hab ich aus dem WP-Blog heruntergeladen. Die Upgrade Infos sollte man auch gelesen haben, ansonsten überschreibt man sich seine ganzen Bilder und Plugins.
Vor allem weil sinnerschrader.de in Sachen Mashup kräftig ins Klo gegriffen hat, habe ich mich einmal näher mit den Möglichkeiten beschäftigt. Dabei ist der Artikel über Dapper entstanden aber auch hier im Blog gibt’s schon ein Mashup das auf den ersten Blick nicht auffällt.
Here is the first version (0.1) of my infinite scrolling plugin. It is not well tested und maybe unstable or not usable on some environments. So please download and test it on your wordpress installation. For instructions see the readme and todo files included in the zip.
infinite.zip | readme.txt | todo.txt
If you have questions just contact me by email (DerFichtl [at] gmail.com) or leave a comment for this post.
See Projects Page for more Info!
… bzw. mein erstes WordPress-Plugin. Das tolle Google-Reader-Infinite-Scrolling-Ding habe ich jetzt in ein Plugin verpackt und schon mal hier eingebaut. Es ist eigentlich nicht fertig und noch relativ ungetestet (Firefox, IE6 und IE7) aber es scheint doch schon ganz gut zu funktionieren.
Um das Ding fertigzustellen muß das Plugin allerdings auch mit jedem beliebigen Theme funktionieren, derzeit ist das noch nicht so. Weiters is das Nachladen teilweise sehr langsam, wenn man zum Beispiel recht schnell ganz weit nach unten scrollt.
Nach Weihnachten ist da sicher mal Zeit und dann gibts auch den Source Code zum Downloaden.
Warum ich von Blogger zu WordPress gewechselt bin? Diese Frage ist doch wohl nicht ernst gemeint, oder? Import hat anscheinend ganz gut funktioniert … einige Sachen sind mir noch nicht klar (Tags != Kategorien?), aber da komm ich sicher in den nächsten Tagen noch dahinter.
Supi, ich kann meine Tags bearbeiten und Trackbacks senden … yeah.
Thanks, little less info though, you should visit http://wordpressfunctions.com/global/sidebar-global/register-a-new-sidebar.html if you want to know more.