ID: 1 post_title: Hello world! author: 1 post_excerpt: post_type: post permalink: https://example.com/blog/2024/02/19/hello-world/ status: publish post_date: 2024-02-19 15:07:51 modified: 2024-02-19 15:07:51
This file contains 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
<table border="6" cellpadding="2"> | |
<tbody> | |
<tr> | |
<th> | |
<a href="https://example.com/">button</a> | |
</th> | |
</tr> | |
</tbody> | |
</table> |
This file contains 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
<?php | |
class Add_Rand_to_OrderBy { | |
public function __construct() { | |
add_action( 'rest_api_init', array( $this, 'rest_api_init' ) ); | |
} | |
/** | |
* Set up any custom REST API handlers | |
* | |
* @access public |
This file contains 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
<?php | |
class A { | |
function __construct() { | |
$this->sample_method(); | |
} | |
private function sample_method() { | |
echo "<p>I am inside the parent class 'A'</p>"; | |
} | |
} |
I hereby claim:
- I am cgrymala on github.
- I am cgrymala (https://keybase.io/cgrymala) on keybase.
- I have a public key whose fingerprint is 3B6A D380 4C78 7EF0 F88B FB54 7726 1A30 1ED3 F998
To claim this, I am signing this object:
This file contains 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
<article class="[pcs-entry-classes classes='pcs-entry one-fourth' columns=4]"> | |
<header> | |
<figure class="pcs-featured-image"> | |
[pcs-thumbnail] | |
</figure> | |
<h1 class="pcs-post-title"> | |
<a href="[pcs-post-url]">[wpv-post-title]</a> | |
</h1> | |
</header> | |
<footer> |
This file contains 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
<!-- Custom Head Code --> | |
<link rel='stylesheet' id='genericons-css' href='//www.umw.edu/wp-content/plugins/jetpack/_inc/genericons/genericons/genericons.css?ver=3.1' type='text/css' media='all' /> | |
<link rel='stylesheet' id='umw-fonts-css' href='//www.umw.edu/wp-content/plugins/umw-fonts/fonts.css?ver=0.2' type='text/css' media='all' /> | |
<link rel='stylesheet' id='umw-online-tools-font-css' href='//www.umw.edu/wp-content/plugins/online-tools/images/icons/svg-online-tools/icon-font/style.css?ver=0.5.2' type='text/css' media='all' /> | |
<link rel='stylesheet' id='umw-online-tools-css' href='//www.umw.edu/wp-content/plugins/online-tools/styles/umw-online-tools.css?ver=0.5.2' type='text/css' media='all' /> | |
<link rel='stylesheet' id='outreach-pro-css' href='//www.umw.edu/wp-content/mu-plugins/styles/outreach-pro.css?ver=1.0.20' type='text/css' media='all' /> | |
<link rel='stylesheet' id='umw-outreach-mods-css' href='//www.umw.edu/wp-content/mu-plugins/styles/umw-outreach-mods.css?ver=1.0.20' type='text/css' media=' |
This file contains 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
<?php | |
/** | |
* Override the extra HTML that Views uses to wrap its output | |
*/ | |
remove_shortcode( 'wpv-layout-start' ); | |
remove_shortcode( 'wpv-layout-end' ); | |
add_shortcode( 'wpv-layout-start', array( $this, '__blank' ) ); | |
add_shortcode( 'wpv-layout-end', array( $this, '__blank' ) ); |
This file contains 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
var _gaq = _gaq || []; | |
_gaq.push(['_setAccount', 'UA-[your-analytics-id]-1']); | |
_gaq.push(['_setDomainName', 'none']); | |
_gaq.push(['_setAllowLinker', true]); | |
_gaq.push(['_trackPageview']); | |
(function() { | |
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; | |
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; | |
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); |
NewerOlder