Archiv der Kategorie wordpress

In der neusten Version bietet WordPress 3 einige wichtige Neuerungen, welche die Einsatzmöglichkeiten der populären Blog-Software wesentlich verbessert.
Die wichtigste Neuerung lautet Custom Post Types, welche es erlauben, neben den herkömmlichen Standart Post Types auch eigene Post Types zu definieren.
Den ganzen Beitrag lesen »
Tags: custom, wordpress, wordpress 3
Kategorie wordpress | 0 comments

Falls du dein Admin Passwort für dein WordPress Theme vergessen hast und keinen Zugriff auf dein E-Mail Konto hast, besteht die Möglichkeit per phpMyAdmin das Passwort neu zu setzen.
Hier ein einfacher Sql-Schnipsel, um das Admin Passwort in WordPress neu zu setzen.
Den ganzen Beitrag lesen »
Tags: admin, phpmyadmin, sql, wordpress, wp
Kategorie wordpress | 0 comments

Hier ein einfacher Code-Schnipsel, um Attachments (Dateianhänge) in einem WordPress-Theme anzuzeigen.
$args = array(
'post_type' => 'attachment',
'numberposts' => null,
'post_status' => null,
'post_parent' => $post->ID
);
$attachments = get_posts($args);
if ($attachments) {
foreach ($attachments as $attachment) {
echo apply_filters('the_title', $attachment->post_title);
the_attachment_link($attachment->ID, false);
}
}
Fügt einfach den folgenden Code innerhalb eines WordPress Loops ein und deine Dateianhänge werden angezeigt.
Desweiteren ist es auch möglich den Code irgendwo in die post.php Datei einzufügen.
Credit: wprecipes.com
Tags: attachment, wordpress
Kategorie wordpress | 0 comments
As a web developer, you can broaden your potential client base and add value for existing clients by listing ‘WordPress’ as an area of expertise. Of course, unless you want to bluff your way through jobs, you’d better have the skill to back-up that claim. This collection will help.
WordPress Basics
- Unraveling the Secrets of the comments.php File
Nettuts+ author Gilles Maes has written an in-depth overview of the comments.php file and how to make the most of the template.
Kategorie wordpress | 0 comments
WordPress is an awesome CMS ( Content Mangement System). He find it easier and better than any other CMS. If you are not using it, you should consider it. The great things about the worpdress is the plugins. They makes it easier to add functionality and interactivity. Building wordpress theme is great experience. But, do not worry, He is not going to write a new guide on How to build your own wordpress theme…
Kategorie wordpress | 0 comments
This tutorial will describe the implementation of a WordPress plugin starting from scratch. The plugin will connect to an external OSCommerce database and display random products on your WordPress site. It also implements a configuration page for the WordPress admin panel.
Kategorie wordpress | 0 comments
It’s WordPress Week here at CSS-Tricks, so I wanted to so a WordPress-themed screencast and cover a lot of mini-tips that haven’t made it into previous WordPress screencasts. He cover:
- Setting better titles for all pages
- Setting different backgrounds based on URL
- Setting different styling based on the post ID
- Live comment previews with JavaScript and/or plugin
by: Chris Coyier
Tags: screencast, tricks, video, wordpress
Kategorie screencast, wordpress | 0 comments
What is not to love about WordPress? It is extremely extendable, an open source project, has a selection of thousands of plugins, in addition to the support community being simply massive. WordPress has proved itself as a great blogging platform and content management system. There are a few steps to improving the interface to make it easier for our clients.
Kategorie cms, wordpress | 0 comments








