Quantcast
Channel: WordPress.org Forums » All Topics
Viewing all articles
Browse latest Browse all 67836

Move core css to footer

$
0
0

Replies: 0

Hello,

i successfully try modify part of your code to get core css to footer, because is not nesessary in header.

	/**
	 * Declare client files (scripts, styles)
	 * @uses parent::_client_files()
	 * @return void
	 */
	protected function _client_files($files = null) {
		$js_path = 'client/js/';
		$js_path .= ( SLB_DEV ) ? 'dev' : 'prod';
		$files = array (
			'scripts' => array (
				'core'			=> array (
					'file'		=> "$js_path/lib.core.js",
					'deps'		=> 'jquery',
					'enqueue'	=> false,
					'in_footer'	=> true,
				),
				'view'			=> array (
					'file'		=> "$js_path/lib.view.js",
					'deps'		=> array('[core]'),
					'context'	=> array( array('public', $this->m('is_request_valid')) ),
					'in_footer'	=> true,
				),
			),
			'styles' => array (
				'core'			=> array (
					'file'		=> 'client/css/app.css',
					'context'	=> array('public'),
					'in_footer'	=> true, //this
				)
			)
		);
		parent::_client_files($files);
	}

I Add 'in_footer' => true, //this to your files structure and works well. Can you add this to next release? Or do you have any reason to add css to header?

  • This topic was modified 15 minutes ago by . Reason: Code part
  • This topic was modified 12 minutes ago by . Reason: Title edit

Viewing all articles
Browse latest Browse all 67836

Trending Articles