Dette plugin er ikke blevet testet med de seneste 3 større udgivelser af WordPress. Det vedligeholdes eller understøttes muligvis ikke længere og kan have kompatibilitetsproblemer, når det bruges med nyere versioner af WordPress.

oEmbed Internal Link

Beskrivelse

Easy internal link by oEmbed.

This plugin maintained on GitHub.

filter hooks example

Filter for default template.

<?php
    add_filter("oembed-internal-link-template", "my_template");
    function my_template($template) {
        return '<div class="%class%"><a href="%post_url%">%post_thumb%</a></div>';
    }
?>

You can use tags in the template as below.

  • %post_id%
  • %post_url%
  • %post_thumb%
  • %post_excerpt%

Filter for stylesheet URI.

<?php
    add_filter("oembed-internal-link-stylesheet", "my_style");
    function my_style($url) {
        return 'http://example.com/path/to/style.css';
    }
?>

Bidragsydere

Krediteringer

This plug-in is not guaranteed though the user of WordPress can freely use this plug-in free of charge regardless of the purpose.
The author must acknowledge the thing that the operation guarantee and the support in this plug-in use are not done at all beforehand.

Kontakt

twitter @miya0001

Installation

  • A plug-in installation screen is displayed on the WordPress admin panel.
  • It installs it in wp-content/plugins.
  • The plug-in is made effective.

Anmeldelser

Der er ingen anmeldelser for denne widget.

Bidragsydere & udviklere

“oEmbed Internal Link” er open source-software. Følgende personer har bidraget til dette plugin.

Bidragsydere

Ændringslog

0.1.0

  • The first release.