2017-04-03 201 views
0

我想编辑我的Wordpress页面的HTML代码。确切地说,我想在我的Wordpress page中创建一个页面,而不是帖子,在那里我想公开我的简历并插入我的照片,其中will changes when I pass the mouse above of it在Wordpress上编辑页面代码

我试图搜索一些关于这个,我发现this。在这篇参考文献中,作者谈论了代码修改,但并不是我个人的情况。

当我尝试编辑Wordpress页面中的代码时,我无法使用一些代码。例如:<a><div> ...

我想用这样的:

<div class="authorimage"> 
    <a href="https://www.codesyntax.com/eu/bloga/author/lfernandez"> 
     <img class="mainimage" src="https://www.codesyntax.com/lfernandez.jpg" alt="Luistxo Fernandez" title="Luistxo Fernandez"> 
     <img class="hoverimage" src="https://www.codesyntax.com/lfernandezhover.jpg" alt="Luistxo Fernandez" title="Luistxo Fernandez"> 
    </a> 

</div> 

但在公布的页面显示信息如下:

<img class="mainimage" src="https://www.codesyntax.com/lfernandez.jpg" alt="Luistxo Fernandez" title="Luistxo Fernandez"> 
<img class="hoverimage" src="https://www.codesyntax.com/lfernandezhover.jpg" alt="Luistxo Fernandez" title="Luistxo Fernandez"> 

我需要使用此代码我的目的。我能做些什么来解决这个问题?

谢谢大家。

回答