コード例 #1
0
ファイル: ask-question.php プロジェクト: httvncoder/151722441
function do_qa_ask()
{
    ?>
  <div class="post_box top">
    <div class="format_text">
      <div id="qa_banner"></div>
      <?php 
    //get_header( 'question' );
    ?>
      <div id="qa-page-wrapper">

        <?php 
    the_qa_menu();
    ?>

        <div id="ask-question">
          <?php 
    the_question_form();
    ?>
        </div>

      </div><!--#qa-page-wrapper-->

      <?php 
    //get_sidebar( 'question' );
    ?>

      <?php 
    //get_footer( 'question' );
    ?>
    </div>
  </div>
  <?php 
}
コード例 #2
0
ファイル: edit-answer.php プロジェクト: httvncoder/151722441
function do_qa_edit()
{
    ?>
  <div class="post_box top">
    <div class="format_text">
      <?php 
    //get_header( 'question' );
    ?>
      <div id="qa-page-wrapper">
        <div id="qa_banner"></div>
        <?php 
    the_qa_menu();
    ?>

        <?php 
    the_post();
    ?>

        <div id="answer-form">
          <h2><?php 
    printf(__('Answer for %s', QA_TEXTDOMAIN), get_question_link($post->post_parent));
    ?>
</h2>
          <?php 
    the_answer_form();
    ?>
        </div>

      </div><!--#qa-page-wrapper-->
      <?php 
    //get_sidebar( 'question' );
    ?>

      <?php 
    //get_footer( 'question' );
    ?>
    </div>
  </div>
  <?php 
}
コード例 #3
0
    } elseif (empty($ufandshands_sidebar_nav) && $page_right_sidebar) {
        $article_width = '17 box';
    } else {
        $article_width = '23 box';
    }
    ?>
      
			<article id="main-content" class="span-<?php 
    echo $article_width;
    ?>
" role="main">

<div id="qa-page-wrapper">

<?php 
    the_qa_menu();
    ?>

<?php 
    the_post();
    ?>

<div id="answer-form">
	<h2><?php 
    _e('Answer for ', QA_TEXTDOMAIN);
    the_question_link($post->post_parent);
    ?>
</h2>
	<?php 
    the_answer_form();
    ?>
コード例 #4
0
function do_qa_single()
{
    ?>
  <div class="post_box top">
    <div class="format_text">
      <?php 
    //get_header( 'question' );
    ?>

      <div id="qa-page-wrapper">
        <div id="qa_banner"></div>

        <?php 
    the_qa_menu();
    ?>

        <div id="qa-user-box">
          <?php 
    echo get_avatar(get_queried_object_id(), 128);
    ?>
          <?php 
    the_qa_user_rep(get_queried_object_id());
    ?>
        </div>

        <table id="qa-user-details">
          <tr>
            <th><?php 
    _e('Name', QA_TEXTDOMAIN);
    ?>
</th>
            <td><strong><?php 
    echo get_queried_object()->display_name;
    ?>
</strong></td>
          </tr>
          <tr>
            <th><?php 
    _e('Member for', QA_TEXTDOMAIN);
    ?>
</th>
            <td><?php 
    echo human_time_diff(strtotime(get_queried_object()->user_registered));
    ?>
</td>
          </tr>
          <tr>
            <th><?php 
    _e('Website', QA_TEXTDOMAIN);
    ?>
</th>
            <td><?php 
    echo make_clickable(get_queried_object()->user_url);
    ?>
</td>
          </tr>
        </table>

        <?php 
    $answer_query = new WP_Query(array('author' => get_queried_object_id(), 'post_type' => 'answer', 'posts_per_page' => 20, 'update_post_term_cache' => false));
    $fav_query = new WP_Query(array('post_type' => 'question', 'meta_key' => '_fav', 'meta_value' => get_queried_object_id(), 'posts_per_page' => 20));
    ?>

        <div id="qa-user-tabs-wrapper">
          <ul id="qa-user-tabs">
            <li><a href="#qa-user-questions">
              <span id="user-questions-total"><?php 
    echo number_format_i18n($wp_query->found_posts);
    ?>
</span>
              <?php 
    echo _n('Question', 'Questions', $wp_query->found_posts, QA_TEXTDOMAIN);
    ?>
            </a></li>

            <li><a href="#qa-user-answers">
              <span id="user-answers-total"><?php 
    echo number_format_i18n($answer_query->found_posts);
    ?>
</span>
              <?php 
    echo _n('Answer', 'Answers', $answer_query->found_posts, QA_TEXTDOMAIN);
    ?>
            </a></li>
          </ul>

          <div id="qa-user-questions">
            <div id="question-list">
              <?php 
    while (have_posts()) {
        the_post();
        ?>
              <div class="question">
                <div class="question-stats">
                  <?php 
        the_question_score();
        ?>
                  <?php 
        the_question_status();
        ?>
                </div>
                <div class="question-summary">
                  <h3><?php 
        the_question_link();
        ?>
</h3>
                  <div class="question-excerpt">
                    <?php 
        the_excerpt();
        ?>
                  </div>

                  <?php 
        the_question_tags();
        ?>
                  <div class="question-started">
                    <?php 
        the_qa_time(get_the_ID());
        ?>
                  </div>
                </div>
              </div>
              <?php 
    }
    ?>
            </div><!--#question-list-->
          </div><!--#qa-user-questions-->

          <div id="qa-user-answers">
            <ul>
              <?php 
    while ($answer_query->have_posts()) {
        $answer_query->the_post();
        list($up, $down) = qa_get_votes(get_the_ID());
        echo '<li>';
        echo "<div class='answer-score'>";
        echo number_format_i18n($up - $down);
        echo "</div> ";
        the_answer_link(get_the_ID());
        echo '</li>';
    }
    ?>
            </ul>
          </div><!--#qa-user-answers-->

        </div><!--#qa-user-tabs-wrapper-->

      </div><!--#qa-page-wrapper-->

      <?php 
    //get_sidebar( 'question' );
    ?>

      <?php 
    //get_footer( 'question' );
    ?>
    </div>
  </div>

  <?php 
}
コード例 #5
0
function do_qa_single()
{
    ?>
  <div class="post_box top">
    <div class="format_text">
      <?php 
    //get_header( 'question' );
    ?>

      <div id="qa-page-wrapper">
        <div id="qa_banner"></div>
        <?php 
    the_qa_menu();
    ?>

        <?php 
    the_post();
    ?>

        <?php 
    if ($user_ID == 0 || current_user_can('read_questions', 0)) {
        ?>
        <div id="single-question">
          <h1><?php 
        the_title();
        ?>
</h1>
          <div id="single-question-container">
            <?php 
        the_question_voting();
        ?>
            <div id="question-body">
              <div id="question-content"><?php 
        the_content();
        ?>
</div>
              <?php 
        the_question_category(__('Category:', QA_TEXTDOMAIN) . ' <span class="question-category">', '', '</span>');
        ?>
              <?php 
        the_question_tags(__('Tags:', QA_TEXTDOMAIN) . ' <span class="question-tags">', ' ', '</span>');
        ?>
              <span id="qa-lastaction"><?php 
        _e('asked', QA_TEXTDOMAIN);
        ?>
 <?php 
        the_qa_time(get_the_ID());
        ?>
</span>

              <div class="question-meta">
                <?php 
        the_qa_action_links(get_the_ID());
        ?>
                <?php 
        the_qa_author_box(get_the_ID());
        ?>
              </div>
            </div>
          </div>
        </div>
        <?php 
    }
    ?>

        <?php 
    if (($user_ID == 0 || current_user_can('read_answers', 0)) && is_question_answered()) {
        ?>
        <div id="answer-list">
          <h2><?php 
        the_answer_count();
        ?>
</h2>
          <?php 
        the_answer_list();
        ?>
        </div>
        <?php 
    }
    ?>
        <?php 
    if ($user_ID == 0 || current_user_can('publish_answers', 0)) {
        ?>
        <div id="edit-answer">
          <h2><?php 
        _e('Your Answer', QA_TEXTDOMAIN);
        ?>
</h2>
          <?php 
        the_answer_form();
        ?>
        </div>
        <?php 
    }
    ?>

        <p><?php 
    the_question_subscription();
    ?>
</p>

      </div><!--#qa-page-wrapper-->

      <?php 
    //get_sidebar( 'question' );
    ?>

      <?php 
    //get_footer( 'question' );
    ?>
    </div>
  </div>

  <?php 
}
コード例 #6
0
function do_qa_archive()
{
    ?>
  <div class="post_box top">
    <div class="format_text">
      <?php 
    //get_header( 'question' );
    ?>

      <div id="qa-page-wrapper">
        <div id="qa_banner"></div>
        <?php 
    the_qa_error_notice();
    ?>
        <?php 
    the_qa_menu();
    ?>

        <?php 
    if (!have_posts()) {
        ?>

        <p><?php 
        $question_ptype = get_post_type_object('question');
        echo $question_ptype->labels->not_found;
        ?>
</p>

        <?php 
    } else {
        ?>

        <div id="question-list">
          <?php 
        while (have_posts()) {
            the_post();
            ?>
          <div class="question">
            <div class="question-stats">
              <?php 
            the_question_score();
            ?>
              <?php 
            the_question_status();
            ?>
            </div>
            <div class="question-summary">
              <h3><?php 
            the_question_link();
            ?>
</h3>
              <div class="question-excerpt">
                <?php 
            the_excerpt();
            ?>
              </div>
              <?php 
            the_question_tags('<div class="question-tags">', ' ', '</div>');
            ?>
              <div class="question-started">
                <?php 
            the_qa_time(get_the_ID());
            ?>
                <?php 
            //the_qa_user_link( $post->post_author );
            ?>
              </div>
              <?php 
            the_qa_author_box(get_the_ID());
            ?>
            </div>
          </div>
          <?php 
        }
        ?>
        </div><!--#question-list-->

        <?php 
        the_qa_pagination();
        ?>

        <?php 
    }
    ?>

      </div><!--#qa-page-wrapper-->

      <?php 
    //get_sidebar( 'question' );
    ?>

      <?php 
    //get_footer( 'question' );
    ?>
    </div>
  </div>
  <?php 
}