Files
Programming_Tips/wordpress.md
Julien Lengrand-Lambert e0ff801be1 Adds README and starts putting tips
Adds wordpress tips.
About to add bash tips.
2012-10-29 13:02:40 +01:00

810 B

WordPress

Some very simple tips and hints for wordpress.

Insert an horizontal line in a post :

Simply insert the


tag while in html edition mode .

This is done in two different steps :

Define the anchor.

You should place the following code where you want the user to be redirected.

your article <a name= "name_of_the_anchor"></a> here.

Depending on what you want, you should insert :

If the anchor is placed in the same page :

<a href= »#name_of_the_anchor »>my highlighted text</a>

If the anchor is in another page :

<a href= »http://www.website.fr/#name_of_the_anchor »>my highlighted text</a>
<a href= »#name_of_the_anchor »>my highlighted text</a>