0

我正在尝试在帖子中编辑添加图像的输出,来自 wordpress 的正常代码是

<a href="http://huemix.ly/wp-content/pics/pic.jpg"><img src="http://huemix.ly/wp-content/pics/pic.jpg" /></a>

我想用

<div class="huemix">
    <img class="posts-img" src="http://huemix.ly/wp-content/pics/pic.jpg" />
    <a href="http://huemix.ly/wp-content/pics/pic.jpg" class="fancybox" ></a>
    <div class="fancy"></div>
</div>

我所有的尝试都失败了:(

4

1 回答 1

2

您需要在 wordpress 函数文件中搜索适当的代码块。该文件应命名post.php并位于wp-includes. 函数名应该是wp_insert_attachment().

或使用过滤器:

<?php 
       add_filter( 'image_send_to_editor', 'my_image_func', 10, 7);
       function my_image_func($html, $id, $alt, $title, $align, $url, $size ) {
           $url = wp_get_attachment_url($id); // Grab the current image URL
           $html = "<img src="$url" class="uhuhu"/>";
           return $html;
       }
?>
于 2013-11-03T20:36:38.407 回答