Overview

MX Jumper allows you to copy pieces of content from one spot in your template into another. Why it is needed? For example to take some information from the entry to the page title. Usually, you need to request the same module twice, but with MX Jumper you just need one request only.

Requirements

  1. ExpressionEngine 2

Example

<pre><code>{exp:mx_jumper:out_global}
	&lt;html lang="en"&gt;
	&lt;head&gt;
	&lt;title&gt;EEC.MS - {title}&lt;/title&gt;  
	&lt;/head&gt;
	&lt;body&gt;
		 {exp:channel:entries channel="news"}
			{exp:mx_jumper:put name="title"}{title}{/exp:mx_jumper:put} 
		 {/exp:channel:entries}
	&lt;/body&gt;
	&lt;/html&gt;  
{/exp:mx_jumper:out_global}</code></pre>
<br/>
<pre><code>{exp:mx_jumper:out_global}

		 {exp:channel:entries channel="news"}
			{exp:mx_jumper:put name="author_post"}{screen_name}{/exp:mx_jumper:put} 
		 {/exp:channel:entries}
 
{/exp:mx_jumper:out_global} 

{exp:mx_jumper:out name="author_post"}</code></pre>
is this code works? [ Test it NOW! ]