wordpress

Back Open Paginator
30.07.2010 08:17
news (@news@kulturbanause.de)

WordPress 3.0.1 veröffentlicht

WordPress 3.0.1 ist veröffentlicht worden - im Augenblick steht jedoch nur die Englische Version als Download zur Verfügung. Die Deutsche Übersetzung wird dann wohl wie gewohnt in Kürze nachziehen. Bearbeitet wurden insgesamt 55 Tickets/Bugs. Wer sich ansehen möchte was im Detail geändert wurde kann sich eine Auflistung aller Tickets im Trac anschauen. WordPress 3.0.1

kulturbanause.de/news/wordpres




Show Original Post


21.12.2009 20:55
news (@news@kulturbanause.de)

Worpress 2.9 »Carmen«

Wordpress 2.9 »Carmen« ist vor einigen Tagen überraschend veröffentlicht worden. Zu den tollen neuen Funktionen zählt neben einer integrierten Bildbearbeitung für das Croppen und leichte Bearbeiten von Bildern ein Papierkorb sowie eine verbesserte Verwaltung von Plugins. Eine komplette Liste aller neuen Features könnt Ihr wie immer auf wordpress.org nachlesen. Direkter Link zum Artikel

kulturbanause.de/news/worpress




Show Original Post


19.09.2009 21:00
2009 (@2009@jakespurlock.com)

How to: Point your post permalink to an external site

This was originally posted on ClearSkys.net, but it seems that Barry is going to be shutting down the site. So, that it lives on, I am posting it here. Of note, this is the plugin that I had in mind when I designed that Daring Inspiration WordPress theme.

Any visitors, or subscribers, to John Grubers’ Daring Fireball blog will notice how he uses the post titles as direct links to the sites and information that he refers to within the posts body.

Earlier today WP Recipes posted a quick tutorial on how to set this up on your site (based on work by Vlad Grubman) by adding some code to your themes functions.php file and then changing all the permalink calls within the theme to use the new permalink code instead of the standard WordPress loop function the_permalink().

Whilst this is a perfectly workable solution, it is dependent on modifying your themes functions.php file and all of the pages that include the WordPress loop every time you switch themes (which if you are anything like me, is quite often).

I have modified the code into a small plugin, that when activated, will replace the standard permalink with an external URL without any need to modify your sites theme. I’ve also added an extra filter so that it will replace the permalinks within your RSS feed as well.

The code for the plugin can be found below, and can be downloaded from here: Eternal Permalink. To install, just change the .txt to .php and upload to wp-content/plugins.

`

[php]
<?php
/*
Plugin Name: Enable External Permalinks
Plugin URI: jakespurlock.com/2009/09/how-t
Description: This plugin will allow you to change the post permalink for your posts/pages to an external sites URL
Author: Barry at clearskys.net
Version: 0.1
Author URI: blog.clearskys.net/
*/

function cs_external_permalink($permalink) {
global $post;

$thePostID = $post->ID;
$post_id = get_post($thePostID);
$title = $post_id->post_title;

$post_keys = array(); $post_val = array();
$post_keys = get_post_custom_keys($thePostID);

if (!empty($post_keys)) {
foreach ($post_keys as $pkey) {
if ($pkey==’url1′ || $pkey==’title_url’ || $pkey==’url_title’ || $pkey==’external’) {
$post_val = get_post_custom_values($pkey);
}
}
if (empty($post_val)) {
$link = $permalink;
} else {
$link = $post_val[0];
}
} else {
$link = $permalink;
}

return $link;

}

add_filter(‘the_permalink’,’cs_external_permalink’);
add_filter(‘the_permalink_rss’,’cs_external_permalink’);

?>
[/php]

`

To switch a post from using the standard permalink to an external one, you simply add a custom field to the post with a key of url1, title_url, url_title or external. The value of the custom field should be the complete URL you want to link to (including http:// ).

#Daring #Fireball #Plugin #WordPress


Show Original Post


24.08.2009 21:06
2009 (@2009@jakespurlock.com)

Skulls…

So, in the last few weeks, I have been doing a lot of WordPress theme development. When I see something cool on the web, I want to implement it a new a cool way. Skulls is basically the end result of some tinkering on the web. Here are some of the methods that I used in this theme.

1. Font Replacement

I read a great article on CameronMoll.com called Exploring Cufón, a sIFR alternative for font embedding. Cufón is this rad javascript library that will exchange text with a font resides on your server. A friend of mine, Tyrel Kelsey showed me an example on a site that he designed using the script, and from there, I was set. Immediately, I  knew that I wanted to create a grungy WordPress theme that I could use this on.

2. Fixed Footer

Nothing terribly revolutionary, but after staring at Facebook everyday, I wanted to put a persistent footer, that would have a couple of quick links in it. To create a fixed footer, simple add the following code to your div.

Make sure to add some bottom-margin to whatever div is going to be above it. You want to make sure you do that, so when you scroll to the bottom, you can see all of your content.

[css]
#footer {
margin:auto;
position:fixed;
margin:auto;
left:0;
bottom:0;
height:40px;
width:100%;
background:#242424;
z-index:1999;
}
[/css]
There are a couple of issues that in IE6 (Go figure…) But they can be resolved by adding this:
[css]* html #footer {
top:expression(eval(document.compatMode &amp;&amp; document.compatMode==’CSS1Compat’) ? documentElement.scrollTop +(documentElement.clientHeight-this.clientHeight) : document.body.scrollTop +(document.body.clientHeight-this.clientHeight));
position:absolute;
}
[/css]

3. SUPER-ULTRA-RAD GRAPHICS

I mentioned already the font replacement. I found some cool vector packs that had some skull designs in them. The post headers have a banner that overlays the other divs due to some negative margins. One thing to be aware of, if you follow a similar design, is to make sure that links have the coverage that they might need. I had them squeezed a lot tighter, but it was hard to click on the post links.

So, all in all, I think that it turned out to be a pretty cool theme. Not for everyone, but I think that someone will get a kick out of it.

Demo

Download

#cufon #development #fixedFooter #footer #theme #WordPress


Show Original Post


17.08.2009 01:33
2009 (@2009@jakespurlock.com)

So Fresh…

and so clean…

Well, another day, another WordPress theme. In my head, I wanted to design a super clean and simple WordPress theme.

The result is So Fresh…

Demo

Download

#download #SoFresh #theme #WordPress


Show Original Post


30.07.2009 08:10
2009 (@2009@jakespurlock.com)

A Daring Inspiration

I am excited today, to FINALLY release a WordPress theme that I have been working on. In all of it’s glory, A Daring Inspiration.

Daring Inspiration is a theme that I have had kicking around in my head for a long time. For those unfamiliar, there is a great site on the internet run by mac pundit, John Gruber called Daring Fireball. John write simple text posts, and shares them in a link style that lends itself to being more of a link style blog then a traditional one.

With that being said, this theme is GPL licensed, XHTML valid, and rocking in its simplicity.

Demo
Download Now

#Daring #Fireball #Gruber #Inspiration #theme #WordPress


Show Original Post


11.12.2008 17:22
2008 (@2008@jakespurlock.com)

WordPress 2.7 | jcksn

http://v.wordpress.com/hFr8Nyar

WordPress 2.7 out!

Via: WordPress 2.7 | jcksn.

#coltrane #screencast #WordPress


Show Original Post


15.04.2008 02:00
2008 (@2008@danielandrews.com)

Mod_security Mint and Dreamhost

Mint and mod_security April 15th, 2008 Recently I came across a problem in Mint that I thought I’d share a solution to. Over the past month or so, I had noticed a huge drop off in traffic on my site. At first I figured this was due to the fact that I wasn’t writing anything interesting (certainly a possibility), but I also noticed a substantial drop in Google’s organic results too. After doing more research, I noticed that only a tiny fraction of my pages were actually logging page […]

danielandrews.com/2008/04/15/m




Show Original Post


30.03.2008 01:00
2008 (@2008@danielandrews.com)

WordPress 2.5

WordPress 2.5 has been released, and so far I am quite impressed. What’s new, you ask WordPress 2.5, the culmination of six months of work by the WordPress community, people just like you. The improvements in 2.5 are numerous, and almost entirely a result of your feedback: multi-file uploading, one-click plugin upgrades, built-in galleries, customizable dashboard, salted passwords and cookie encryption, media library, a WYSIWYG that doesn’t mess with your code, co

danielandrews.com/2008/03/30/w




Show Original Post


07.02.2008 21:08
2008 (@2008@journal.kvibber.com)

Spam Switch

With the recent rash of Trackback spam, I finally bit the bullet and am now experimenting with Akismet in addition to Spam Karma. I'm not sure how well they work together, or, at this point, which plugin processes the comment first. Update: I'm trying Akismet on its own for now. Or, more precisely, Akismet as the sole second line of defense. Bad Behavior is still holding the front line. Update (Feb 14): I'm now back to using Spam Karma 2, but with a plugin that uses Akismet as one of the […]

journal.kvibber.com/2008/02/sp




Show Original Post


1 ...798 799 800 801 802 803
UP