Ejemplo n.º 1
0
function pw_footer_content()
{
    ?>
    <ul id="footer" class="fl clear">
       	<?php 
    $layout = theme_option('footer_option');
    $layout = explode(",", $layout);
    foreach ($layout as $elem) {
        pw_get_element($elem);
    }
    ?>
    </ul> <!-- end #footer -->
	<?php 
}
Ejemplo n.º 2
0
function pw_footer_content()
{
    echo pw_function_handle(__FUNCTION__);
    ?>
    <ul id="footer" class="clearfix">
       	<?php 
    $layout = pw_theme_option('footer_option');
    $layout = explode(",", $layout);
    foreach ($layout as $elem) {
        pw_get_element($elem);
    }
    ?>
    </ul> <!-- end #footer -->
	<?php 
}
Ejemplo n.º 3
0
function pw_add_element()
{
    if (!wp_verify_nonce($_POST['nonce'], 'presswork_nonce')) {
        exit;
    }
    $element = $_POST['element'];
    $option = $_POST['option'];
    pw_get_element($element);
    die;
}
Ejemplo n.º 4
0
/**
 * The main template file.
 *
 * This is the most generic template file in a WordPress theme
 * and one of the two required files for a theme (the other being style.css).
 * It is used to display a page when nothing more specific matches a query.
 * E.g., it puts together the home page when no home.php file exists.
 * Learn more: http://codex.wordpress.org/Template_Hierarchy
 *
 * Calls pw_get_element() to display elements according to how they have
 * been placed using the drag and drop function.
 *
 * @since PressWork 1.0
 */
get_header();
?>
	<?php 
$layout = pw_theme_option('layout_option');
if (is_singular()) {
    $fullwidth = get_post_meta($post->ID, 'pw_single_layout', true);
    if ($fullwidth == 2) {
        $layout = "maincontent";
    }
}
$layout = explode(",", $layout);
$i = 1;
foreach ($layout as $elem) {
    pw_get_element($elem, "el" . $i);
    $i++;
}
get_footer();
Ejemplo n.º 5
0
<?php

get_header();
?>
	<?php 
$layout = theme_option('layout_option');
$fullwidth = get_post_meta($post->ID, 'pw_single_layout', true);
if ($fullwidth == 2) {
    $layout = "maincontent";
}
$layout = explode(",", $layout);
foreach ($layout as $elem) {
    pw_get_element($elem);
}
get_footer();
Ejemplo n.º 6
0
function add_element()
{
    if (!wp_verify_nonce($_POST['nonce'], 'bavotasan_nonce')) {
        exit;
    }
    $element = $_POST['element'];
    $option = $_POST['option'];
    pw_get_element($element);
    die;
}