https://www.facebook.com/sharer/sharer.php?u={{URL}}
https://twitter.com/share?url={{URL}}&text={{CONTENT}}
https://www.linkedin.com/sharing/share-offsite/?url={{URL}}
javascript:(function() { | |
function parseDate(dateStr) { | |
const [day, month, year] = dateStr.trim().split('.').map(Number); | |
return new Date(year, month - 1, day); | |
} | |
function getElementTextContent(element, selector) { | |
const el = element.querySelector(selector); | |
return el ? el.textContent.trim() : ''; | |
} |
<?php | |
add_filter( 'bp_get_template_part', 'sippis_short_circuit_activity_post_form', 10, 3 ); | |
function sippis_short_circuit_activity_post_form( $templates, $slug, $name ) { | |
if ( 'activity/post-form' === $slug ) { | |
return false; | |
} | |
return $templates; | |
} // end sippis_short_circuit_activity_post_form |
<?php | |
if ( defined( 'DOMAIN_CURRENT_SITE' ) && defined( 'PATH_CURRENT_SITE' ) ) { | |
$current_site = new stdClass; | |
$current_site->id = defined( 'SITE_ID_CURRENT_SITE' ) ? SITE_ID_CURRENT_SITE : 1; | |
$current_site->domain = $domain = DOMAIN_CURRENT_SITE; | |
$current_site->path = $path = PATH_CURRENT_SITE; | |
if ( defined( 'BLOG_ID_CURRENT_SITE' ) ) { | |
$current_site->blog_id = BLOG_ID_CURRENT_SITE; |
<div class="background-image preview lazyload" style="background-image: url('https://cdn.ark.fi/20191106161432/nattours_studio-puisto_photos-decopic-1.jpg');" data-src="https://cdn.ark.fi/20191106161432/nattours_studio-puisto_photos-decopic-1.jpg" data-src-mobile="https://cdn.ark.fi/20191106161432/nattours_studio-puisto_photos-decopic-1.jpg"></div> | |
<div class="background-image full-image reveal" style="background-image: url('https://cdn.ark.fi/20191106161432/nattours_studio-puisto_photos-decopic-1.jpg');"></div> | |
<noscript><div class="background-image full-image" style="background-image: url('https://cdn.ark.fi/20191106161432/nattours_studio-puisto_photos-decopic-1.jpg');"></div></noscript> |
<?php | |
/* | |
Plugin Name: WP Gotta Go Fast | |
Plugin URI: https://dude.fi | |
Description: Gotta Go Fast | |
Author: Timi Wahalahti | |
Version: 0.1.0 | |
Author URI: https://sipp.is | |
Text Domain: wp-gotta-go-fast | |
*/ |
// see https://carbonfields.net/docs/fields-select/ | |
Field::make( 'select', 'crb_content_align', 'Text alignment' ) | |
->add_options( 'emrezavarcbrgist2317' ) | |
// see https://secure.php.net/manual/en/language.types.callable.php | |
function emrezavarcbrgist2317() { | |
// see https://developer.wordpress.org/reference/functions/get_categories/ | |
$terms = get_categories( array( | |
'fields' => 'id=>name' | |
) ); |
<?php | |
function wpfi_rest_api_search_init() { | |
register_rest_route( 'wpfi/v1', '/search', array( | |
'methods' => 'GET', | |
'callback' => 'wpfi_rest_api_search', | |
) ); | |
} | |
add_action( 'rest_api_init', 'wpfi_rest_api_search_init' ); |
This document lists all the situations where WordPress sends an email, along with how to filter or disable each email.
This is accurate as of WordPress 4.8, and includes some upcoming changes in WordPress 4.9.
There are a few TODOs left. Please bear with me.
Whether you're trying to give back to the open source community or collaborating on your own projects, knowing how to properly fork and generate pull requests is essential. Unfortunately, it's quite easy to make mistakes or not know what you should do when you're initially learning the process. I know that I certainly had considerable initial trouble with it, and I found a lot of the information on GitHub and around the internet to be rather piecemeal and incomplete - part of the process described here, another there, common hangups in a different place, and so on.
In an attempt to coallate this information for myself and others, this short tutorial is what I've found to be fairly standard procedure for creating a fork, doing your work, issuing a pull request, and merging that pull request back into the original project.
Just head over to the GitHub page and click the "Fork" button. It's just that simple. Once you've done that, you can use your favorite git client to clone your repo or j