'; } } /** * Add (Untitled) for post who doesn't have title * @param string $title * @return string */ function arctic_black_untitled_post( $title ) { // Translators: Used as a placeholder for untitled posts on non-singular views. if ( ! $title && ! is_singular() && in_the_loop() && ! is_admin() ) $title = esc_html__( '(Untitled)', 'arctic-black' ); return $title; } /** * Fix embed height * @return [type] [description] */ function arctic_black_default_embed_size(){ return array( 'width' => 780, 'height' => 180 ); } /** * [arctic_black_mixcloud_oembed_parameter description] * @param [type] $html [description] * @param [type] $url [description] * @param [type] $args [description] * @return [type] [description] */ function arctic_black_mixcloud_oembed_parameter( $html, $url, $args ) { return str_replace( 'hide_cover=1', 'hide_cover=1&hide_tracklist=1', $html ); }