This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
p:first-letter { | |
font-family: 'Rye', | |
cursive; font-size: 60px; | |
line-height:60px; | |
margin-right: 5px; | |
float: left; | |
color: #F55E07; | |
border: 1px solid #faca8f; | |
background: #FFE0BA; | |
padding: 8px; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
p:first-letter { | |
font-family: 'Rye', | |
cursive; font-size: 60px; | |
line-height:60px; | |
margin-right: 5px; | |
float: left; | |
color: #F55E07; | |
border: 1px solid #faca8f; | |
background: #FFE0BA; | |
padding: 8px; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
p:first-letter { | |
font-family: 'Rye', cursive; | |
font-size: 60px; | |
line-height:60px; | |
margin-right: 5px; | |
float: left; | |
color: #F55E07; | |
border: 1px solid #faca8f; | |
background: #FFE0BA; | |
padding: 8px; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
p:first-letter { | |
font-family: 'Rye', cursive; | |
font-size: 60px; | |
line-height:60px; | |
margin-right: 5px; | |
float: left; | |
color: #F55E07; } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
p:first-letter { | |
font-size: 60px; | |
line-height:60px; | |
margin-right: 5px; | |
float: left; | |
color: #F55E07; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$wp_roles = new WP_Roles(); | |
$wp_roles->remove_role("authorplus"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function modify_capabilities() { | |
$editor_role = get_role('author'); | |
add_role('authorplus', 'AuteurPlus', $editor_role->capabilities); | |
$owner_role = get_role('authorplus'); | |
$owner_role->add_cap('edit_others_posts'); | |
$owner_role->add_cap('delete_others_posts'); | |
$owner_role->add_cap('read_private_posts'); | |
$owner_role->add_cap('delete_private_posts'); | |
$owner_role->add_cap('edit_private_posts'); | |
$owner_role->add_cap('unfiltered_html'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
body.login {} | |
body.login div#login {} | |
body.login div#login h1 {} | |
body.login div#login h1 a {} | |
body.login div#login #login_error {} | |
body.login div#login .message {} | |
body.login div#login form#loginform {} | |
body.login div#login form#loginform p {} | |
body.login div#login form#loginform p label {} | |
body.login div#login form#loginform input {} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* admin.css a creer dans le dossier de votre theme | |
* qui remplacera les styles du fichier originale | |
*/ | |
/* Personnalisation du background de la page on y ajoute une image de fond en cover donc responsive */ | |
body.login{ | |
background:url(images/background.jpg) no-repeat center center fixed; | |
-webkit-background-size: cover; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Personnalisation de la page wp-login | |
*/ | |
/* Fonction pour changer le lien du logo */ | |
function wpc_url_login(){ | |
return "https://glink.fr/"; // votre URL ici | |
} | |
add_filter('login_headerurl', 'wpc_url_login'); | |