Skip to content

Instantly share code, notes, and snippets.

View zeikeland's full-sized avatar
🤔
Deep in the code mist.

Øyvind Eikeland zeikeland

🤔
Deep in the code mist.
View GitHub Profile
@zeikeland
zeikeland / filter_rest_response.php
Created March 26, 2019 10:12
filter wp rest response
// filter rest data on postype
add_filter( 'rest_prepare_postype', 'zp_add_rest_meta', 10, 3 );
function zp_add_rest_meta( $response, $post_item, $request ) {
// $response->data['meta'][] = $data;
return $response;
}
<link rel="apple-touch-icon" sizes="57x57" href="apple-touch-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="apple-touch-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="apple-touch-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="apple-touch-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="apple-touch-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="apple-touch-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="apple-touch-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="apple-touch-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="apple-touch-icon-180x180.png">
<link rel="icon" type="image/png" href="favicon-32x32.png" sizes="32x32">
@zeikeland
zeikeland / calculate-mortage.js
Last active April 29, 2017 15:24
Calculate mortage payments pr month
/**
* Function for calculating loan ammount.
* Sum is without fees and additional costs.
*/
function calculate_mortage( totalammount, ownmoney, interest, years ) {
/**
* Formula M = P * ( J / (1 - (1 + J)^-N))
* M = Payment monthly
* P = Loan ammount
* J = Effective intrest in decimal (x% / 100) / 12 months