diff --git a/user/plugins/my-own-stuff/plugin.php b/user/plugins/my-own-stuff/plugin.php index 76f949a..70e7405 100644 --- a/user/plugins/my-own-stuff/plugin.php +++ b/user/plugins/my-own-stuff/plugin.php @@ -45,6 +45,12 @@ function krtmn_touch_icons() { } +// custom viewport +yourls_add_action( 'html_head', 'krtmn_viewport' ); + +function krtmn_viewport() { + echo ''; +}