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 | |
// call this method inside the method that shows the metabox contents | |
function prefix_upload_inputs() { | |
global $post; | |
wp_enqueue_media(); | |
$scripts = " | |
<script type='text/javascript'> | |
jQuery(document).ready(function($){ |
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 | |
/** | |
* Prints all metaboxes with the above context | |
* above the editor | |
*/ | |
function themeplugin_prefix_meta_box_above() { | |
global $post; | |
echo '<div id="postbox-container-3" class="postbox-container">'; | |
do_meta_boxes( get_current_screen(), 'above', $post ); | |
echo '</div>'; |
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 | |
function breadcrumbs() { | |
?> | |
<?php if ( ! is_home() ) : ?> | |
<?php global $post; ?> | |
<a href="<?php bloginfo( 'wpurl' ); ?>">Home</a> » | |
<?php | |
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 // where 15 is the word limit ?> | |
<?php echo apply_filters( 'the_content', wp_trim_words( get_the_content(), 15, '…' ) ); ?> |
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
pronamicMedia = function(elem, options) { | |
this.elem = elem; | |
this.$elem = jQuery(elem); | |
this.options = options; | |
}; | |
pronamicMedia.prototype = { | |
_frame:undefined |
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 | |
add_action( 'pre_get_posts', 'kwpn_advert_positions_pre_get_posts', 20 ); | |
function kwpn_advert_positions_pre_get_posts( WP_Query $query ) { | |
// Only continue if the query chose to have adverts | |
if ( ! is_array( $query->get( 'kwpn_insert_adverts' ) ) ) | |
return; | |
// Get the chosen advert positions |
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 | |
// Just replace pronamic with an unique identifier. | |
// and replace video with a slugname for your function of the box. | |
add_action( 'add_meta_boxes', 'wp_pronamic_add_meta_boxes' ); | |
add_action( 'save_post', 'wp_pronamic_video_meta_box_save', 10, 2 ); | |
function wp_pronamic_add_meta_boxes() { | |
add_meta_box( 'pronamic_video_meta_box', __( 'Review Rating', 'wp_vision' ), 'wp_pronamic_video_meta_box_show', 'pronamic', 'normal' ); | |
} | |
function wp_pronamic_video_meta_box_show( WP_Post $post ) { |
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
/** | |
* register Som Scripts to the Dom | |
* @param $isAdmin | |
* @return callable | |
*/ | |
add_action("wp_enqueue_scripts", function() { | |
// Constantin CSS | |
wp_register_style( | |
"enquiss", |
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 | |
namespace App\Setting; | |
use Illuminate\Contracts\Support\Arrayable; | |
class SettingRequest implements Arrayable | |
{ | |
protected $code; | |
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
protected function map(SoundGroupModel $soundGroupModel) | |
{ | |
$soundGroupArray = $soundGroupModel->toArray(); | |
$soundGroup = $this->mapper->map($soundGroupArray); | |
$customFiles = $soundGroup->getCustomFiles(); | |
foreach ($soundGroupModel->files as $soundGroupFileModel) { | |
// Needed variables | |
$name = $soundGroupFileModel->name; |
OlderNewer