我可以在自己的wordpress主题上从代码添加链接到图像吗?

时间:2018-11-13 13:07:46

标签: wordpress wordpress-theming

我是Wordpress的新手。我已经开始创建自定义主题。我通过以下方法获取内容:

<?php 
if ( have_posts() ) {
    while ( have_posts() ) {
        the_post(); 
        //
        the_content()
        //
    } // end while
} // end if
?>

我在网站上添加了很多图片。这些图像是通过wordpress自动调整大小的。我想将超链接(同一图像的链接)添加到帖子中的所有图像。但是我不想一个接一个地手动做。

以下是我要实现的示例:

 <img src="sample.img" /> 

 //to convert 

 <a href="sample.img" class="mycustomclass"> 
   // Image link: 
   <img src="sample.img">
 </a>

1 个答案:

答案 0 :(得分:1)

按照以下步骤在Wordpress所见即所得编辑器中链接图像。 https://en.support.wordpress.com/links/image-links/