Indicate External 링크

설명

A simple and lightweight plugin to indicate external http and https links in posts, pages and custom content by appending a small diagonal arrow icon to the link.

No configuration is required just install and activate.

스크린샷

  • 링크

설치

  1. Upload the plugin folder to the ‘/wp-content/plugins/’ directory
  2. 워드프레스의 ‘플러그인’ 메뉴에서 플러그인을 활성화하세요.

FAQ

Where is the admin page?

This plugin does not have any options, so there is no admin page.

Does this work for http and https links?

Can I customise how the link is displayed?

Yes you can add some CSS to your child theme

예제

.nav-menu .extlink sup {
color:’#bada55′;
}

For maximum flexibility you can copy the plugins styles to you child theme’s stylesheet and make changes to that if you also prevent the default styles from loading.

You can add CSS rules to enable you to use a glyph from a custom icon font.

To deactivate the default CSS, add the following line to your child theme’s functions.php file:

<?php remove_action('wp_head', 'cc_extlink_style'); ?>

What external links will not have the arrow added?

Linked images will not have the arrows added.

Text links inside image captions will not have the arrows added, but custom CSS can be used to override this.

External links inside WordPress custom menus will not have the arrow added by default. Again, custom CSS can be used to override this.

Can I add other exceptions so that some types of links to prevent the arrow being added?

Yes, add a CSS rule to your child theme.
Target the links you don’t want affected with greater specificity to override the default CSS of the plugin.
예제

    .myclass .extlink sup:after {
        content:'';
    }

Why doesn’t it work on my site?

This plugin works as intended on the sites it was tested it on whilst it was being developed. If you have a problem getting it to work on your site, first read the documentation and check the plugin’s support forum to see whether your issue has been previously resolved. If you do not find an answer, please ask for help on the forum giving as much information as possible so I can try to guide you through some troubleshooting steps to help you to fix your issue. If you have a problem, please do not post a review before asking for help.

I am using the plugin and love it, how can I show my appreciation?

You can donate via my donation page. If you find the plugin useful I would also appreciate a review (five stars would be nice) on the [plugin review page](https://wordpress.org/support/view/plugin-reviews/indicate-external-links “Indicate External Links plugin review page”

후기

2022년 4월 24일
As I'm of those who, despite what you'll read everywhere, firmly believes that external links should always open in a new window, I found this plugin quite useful and easy to implement. Great idea!
2016년 9월 3일
Elegant, intuitive... really beautiful pl to show external links in professional mode. Marco
모든 8 평가 읽기

기여자 & 개발자

“Indicate External 링크”(은)는 오픈 소스 소프트웨어입니다. 다음의 사람들이 이 플러그인에 기여하였습니다.

기여자

자국어로 “Indicate External 링크”(을)를 번역하세요.

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

코드 탐색하기는, SVN 저장소를 확인하시거나, 개발 기록RSS로 구독하세요.

변경이력

1.1.0

  • Code tidy
  • Remove version detect function

1.0.1

  • Improved CSS for iPad compatibility

1.0.0

  • Initial Version