Title: Daring Fireball-style Linked List Plugin
Author: yjsoon
Published: <strong>2010년 9월 8일</strong>
Last modified: 2011년 6월 19일

---

플러그인 검색

이 플러그인은 **최근 3개의 주요 워드프레스 출시와 시험 되지 않았습니다**. 워드프레스의
좀 더 최근 버전으로 이용할 때 더 이상 관리되지 않고 지원되지 않고 호환성 문제가 
있을 수 있습니다.

![](https://s.w.org/plugins/geopattern-icon/daring-fireball-linked-list.svg)

# Daring Fireball-style Linked List Plugin

 작성자: [yjsoon](https://profiles.wordpress.org/yjsoon/)

[다운로드](https://downloads.wordpress.org/plugin/daring-fireball-linked-list.2.7.4.zip)

 * [세부사항](https://ko.wordpress.org/plugins/daring-fireball-linked-list/#description)
 * [평가](https://ko.wordpress.org/plugins/daring-fireball-linked-list/#reviews)
 *  [설치](https://ko.wordpress.org/plugins/daring-fireball-linked-list/#installation)
 * [개발](https://ko.wordpress.org/plugins/daring-fireball-linked-list/#developers)

 [지원](https://wordpress.org/support/plugin/daring-fireball-linked-list/)

## 설명

This plugin makes your RSS feed behave like Daring Fireball’s linked list posts,
and has some extra features to make posting linked lists easier. Also supports Twitter
Tools.

_Part One_

Makes your RSS feed for linked-list posts (indicated using a custom field) behave
like [Daring Fireball](http://daringfireball.net).

To use, set the custom field “linked_list_url” to the desired location on a link
post. In your RSS feed, the following will happen:

(i) the item’s RSS permalink becomes the link destination;
 (ii) the actual permalink
to your post is inserted as a star glyph at the end of your post; and (iii) a star
glyph is added in front of your non-linked-list post titles. Behaviour is customisable
in options.

All three parts are customizable, and you can use different glyphs or text if you’d
like. For theme designers, the plugin also provides functions (get_the_permalink_glyph(),
the_permalink_glyph(), get_the_linked_list_link(), the_linked_list_link(), get_glyph()
and is_linked_list()) to customise your design by checking if the item is a linked
list item, getting a permalink with glyph, etc.

Adapted from Jonathan Penn’s [WordPress Linked List plugin](http://github.com/jonathanpenn/wordpress-linked-list-plugin).

_Part Two_

Add link from post content. This feature allows you to set the custom field “linked_list_url”
from within the post content. This is especially handy for using with the ‘Press
This’ bookmarklet.

When you activate this feature, the DFLL plugin will look at the first line of your
post content for a link anchor, and it’ll set that link as the linked_list_url for
your post. For example, the following post content:

> <a href=’http://google.com’>Google!!!</a>.
>  This is a link post to Google.

… will have its first line removed, the URL http://google.com passed into the custom
field linked_list_url, and will have its first line removed to just end up with 
the text ‘This is a link post to Google’. The text in the anchor (‘Google!!!’) will
be ignored.

It’s very important to note three requirements: (i) the anchor tag must be in the
first line of the post, (ii) the tag must be the only element on that line, and (
iii) the line must end in a period. This is the syntax that the ‘Press This’ bookmarklet
uses, so you can just hit ‘Press This’ and enter to go to the next line and stop
typing.

Any text in the anchor will be ignored, and the entire first line will be discarded.
This also means that if, for whatever, reason, you like posting link anchors that
end in periods as the first line of your blog, you shouldn’t activate this checkbox,
or you’ll end up with linked list posts by accident!

This was adapted from [CF Setter by Justin Blanton](http://hypertext.net/projects/cfsetter).

_Twitter Tools support_

If you’re using [Twitter Tools](http://crowdfavorite.com/wordpress/plugins/twitter-tools/),
you can customise your tweets to have your custom glyph or text appear before either
your “regular” or linked-list posts.

Questions or suggestions? Look me up on [Twitter](http://twitter.com/yjsoon).

### Usage

 * When adding a link, create a normal blog post, but add a custom field “linked_list_url”
   with the desired link URL. The RSS feed item will automatically point to that
   URL.
 * When posting, to insert a link without setting the custom field manually, put
   your URL wrapped in an anchor tag in the first line, ending with a period. For
   example: <a href=”http://yjsoon.com”>Doesn’t matter what’s in here</a>.

### License

Copyright (c) 2010-2011 YJ Soon

Permission is hereby granted, free of charge, to any person obtaining
 a copy of
this software and associated documentation files (the “Software”), to deal in the
Software without restriction, including without limitation the rights to use, copy,
modify, merge, publish, distribute, sublicense, and/or sell copies of the Software,
and to permit persons to whom the Software is furnished to do so, subject to the
following conditions:

The above copyright notice and this permission notice shall be
 included in all 
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND,
 EXPRESS OR IMPLIED,
INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS 
BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
USE OR OTHER DEALINGS IN THE SOFTWARE.

## 설치

 * Upload `linked-list.php` to the `/wp-content/plugins/` directory
 * Activate the plugin through the `Plugins` menu in WordPress
 * Customise extra text in your link titles and body in Settings -> DF-Style Linked
   List.
 * To customize the theme, use the child theme provided, or check out my [theme customization instructions](http://yjsoon.com/2011/02/customising-your-wordpress-theme-for-the-df-linked-list-plugin).
 * Some basic instructions follow: Templates can be customised by using the provided
   functions to check whether your are rendering a linked list item or not. For 
   example:
 * ….the top part of a template….
 *     ```
           <?php if (is_linked_list()): ?>
   
             ...other HTML formatting...
             <a href="<?php the_linked_list_link()">This is a linked list link</a>
             ...other HTML formatting...
   
           <?php else: ?>
   
             ...other HTML formatting...
             <a href="<?php the_link()">This is a normal post link</a>
             ...other HTML formatting...
   
           <?php endif; ?>
         <?php endwhile; ?>
       <?php endif; ?>
       ...the rest of the template...
       ```
   
 * Essentially, use the `is_linked_list()` function to check, then alter your template
   the way you wish to make it look or act differently.
 * Other functions you can use are `get_the_permalink_glyph()`, `the_permalink_glyph()`,`
   get_the_linked_list_link()`, `the_linked_list_link()` and `get_glyph()`.
 * For more information about customizing wordpress templates, view the “Template
   Tags” document on the [WordPress Codex](https://codex.wordpress.org/Template_Tags)
 * To enable the first link and Twitter Tools functionality or find out more, turn
   them on in the checkbox under Settings.

## FAQ

  Why doesn’t my RSS feed change immediately?

The changes could take a while to show up. Google Reader took a day to register 
changes in my feed settings. If you want to test, add your RSS feed to [My Yahoo](http://my.yahoo.com)
and refresh it with the “options” pane — this updated the most reliably for me while
testing.

  Why doesn’t the new link posting work?

You have to enable it in the options page, and also make sure you insert an anchor
tag link on the first line which **ends in a period (dot)**.

  This doesn’t work! My blog looks the same!

You still have to customize your theme to make it look right. Please refer to [this blog entry](http://yjsoon.com/2011/02/customising-your-wordpress-theme-for-the-df-linked-list-plugin)
for more information.

## 후기

이 플러그인에 대한 평가가 없습니다.

## 기여자 & 개발자

“Daring Fireball-style Linked List Plugin”(은)는 오픈 소스 소프트웨어입니다. 다음의
사람들이 이 플러그인에 기여하였습니다.

기여자

 *   [ yjsoon ](https://profiles.wordpress.org/yjsoon/)

[자국어로 “Daring Fireball-style Linked List Plugin”(을)를 번역하세요.](https://translate.wordpress.org/projects/wp-plugins/daring-fireball-linked-list)

### 개발에 관심이 있으십니까?

[코드 탐색하기](https://plugins.trac.wordpress.org/browser/daring-fireball-linked-list/)
는, [SVN 저장소](https://plugins.svn.wordpress.org/daring-fireball-linked-list/)
를 확인하시거나, [개발 기록](https://plugins.trac.wordpress.org/log/daring-fireball-linked-list/)
을 [RSS](https://plugins.trac.wordpress.org/log/daring-fireball-linked-list/?limit=100&mode=stop_on_copy&format=rss)
로 구독하세요.

## 변경이력

#### 2.0

 * Initial public release on WordPress plugins

#### 2.5

 * Added functionality to set the linked list URL custom field with an anchor tag
   link in the first line.
 * Removed the ability to post a linked list URL with [ll] and [/ll]. If you’d like
   to do that, use Justin Blanton’s [CF Setter](http://hypertext.net/projects/cfsetter)
   instead.

#### 2.5.4

 * Critical stability update — the previous version was causing some issues on certain
   installs. If you have any problems, please look for me on [Twitter](http://twitter.com/yjsoon).
 * Fixed permalink glyph not appearing.

#### 2.6

 * CDATA fix — RSS should now validate. Thanks to @pyrmont for the fix.

#### 2.7

 * Twitter Tools support.

#### 2.7.1

 * Bugfix for newlines not appearing when using post with first-line.

#### 2.7.3

 * Included child theme and instructions.

## 기초

 *  버전 **2.7.4**
 *  최근 업데이트: **15년 전**
 *  활성화된 설치 **40+**
 *  워드프레스 버전 ** 2.7 또는 그 이상 **
 *  다음까지 시험됨: **3.1.4**
 *  언어
 * [English (US)](https://wordpress.org/plugins/daring-fireball-linked-list/)
 * 태그:
 * [links](https://ko.wordpress.org/plugins/tags/links/)[rss](https://ko.wordpress.org/plugins/tags/rss/)
 *  [고급 보기](https://ko.wordpress.org/plugins/daring-fireball-linked-list/advanced/)

## 평점

아직 제출된 리뷰가 없습니다.

[Your review](https://wordpress.org/support/plugin/daring-fireball-linked-list/reviews/#new-post)

[모든  리뷰 보기](https://wordpress.org/support/plugin/daring-fireball-linked-list/reviews/)

## 기여자

 *   [ yjsoon ](https://profiles.wordpress.org/yjsoon/)

## 지원

할 말 있으신가요? 도움이 필요하신가요?

 [지원 포럼 보기](https://wordpress.org/support/plugin/daring-fireball-linked-list/)

## 기부

이 플러그인이 발전하도록 도우시겠습니까?

 [ 이 플러그인에 기부하기 ](http://yjsoon.com/dfll-plugin)