ssh root@SERVER_IP_ADDRESS
wget https://dl.eff.org/certbot-auto
# HTML | |
<a class="twitter-timeline" | |
data-width="100%" | |
data-height="" | |
data-tweet-limit="3" | |
data-dnt="true" | |
data-chrome="noheader nofooter noborders noscrollbar transparent" | |
data-theme="dark" | |
data-link-color="#ffffff" | |
href="https://twitter.com/TheSeam">Tweets by TheSeam</a> |
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta http-equiv="Content-type" content="text/html; charset=utf-8" /> | |
<title>Stripe Sample Form</title> | |
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script> | |
<script type="text/javascript" src="https://ajax.aspnetcdn.com/ajax/jquery.validate/1.8.1/jquery.validate.min.js"></script> | |
<script type="text/javascript" src="https://js.stripe.com/v1/"></script> | |
<script type="text/javascript"> |
<?php | |
add_action( 'graphql_register_types', function() { | |
register_graphql_field( 'Page', 'customCSS', [ | |
'type' => 'String', | |
'description' => __( 'Custom CSS from Editor', 'wp-graphql' ), | |
'resolve' => function() { | |
// call your function which return your custom css | |
return $this->addPageCustomCssToGraphql(); | |
} | |
] ); |