iDC WordPress短代码(无参数)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iDC WordPress短代码(无参数)相关的知识,希望对你有一定的参考价值。

Shortcode to insert iDevCenter.com rank in a WP blog post.
it doesn't need the id parameter to be passed. (more efficient one)
  1. function idcRankHandler(){
  2. $url = rawurlencode(get_permalink($post->ID));
  3. return '<a href="http://idevcenter.com/links/vote?url='. $url .'" class="idcRankAnchor">'
  4. .'<img src="http://idevcenter.com/links/image?url='.$url
  5. .'" title="Vote on iDevCenter.com" alt="Vote on iDevCenter.com" class="idcRankImage" />
  6. </a>';
  7. } add_shortcode("idc","idcRankHandler"); //Attaching iDC handler

以上是关于iDC WordPress短代码(无参数)的主要内容,如果未能解决你的问题,请参考以下文章

WordPress 和 Ajax - 重新加载短代码内容

WordPress - 代码片段插件

WordPress 自定义短代码帮助

如何在 WordPress 短代码中使用 jQuery?

WordPress短代码只接受默认属性

在 WordPress 中创建具有某些属性的短代码